© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•15mo ago•
5 replies
WiseWill

Order of Clusters in Navigation

Does anyone know of a way to sort Panel Builder Clusters in the navigation menu is a specific order? Similar to
protected static ?int $navigationSort = 1;
protected static ?int $navigationSort = 1;

in a Resource class.
Solution
Would you believe it! This works:
<?php

namespace App\Filament\Clusters;

use Filament\Clusters\Cluster;

class Settings extends Cluster
{
    protected static ?string $navigationIcon = 'heroicon-o-cog-8-tooth';
    protected static ?int $navigationSort = 1;
}
<?php

namespace App\Filament\Clusters;

use Filament\Clusters\Cluster;

class Settings extends Cluster
{
    protected static ?string $navigationIcon = 'heroicon-o-cog-8-tooth';
    protected static ?int $navigationSort = 1;
}
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Navigation Parent Items in Clusters
FilamentFFilament / ❓┊help
2y ago
Bug? regarding clusters navigation
FilamentFFilament / ❓┊help
16mo ago
Change order of navigation items
FilamentFFilament / ❓┊help
13mo ago
Order Navigation on sidebar
FilamentFFilament / ❓┊help
3y ago