Navigation
Overview
By default, Filament will register navigation items for each of your resources and custom pages. These classes contain static properties and methods that you can override, to configure that navigation item.
Customizing a navigation item's label
By default, the navigation label is generated from the resource or page's name. You may customize this using the $navigationLabel
property:
protected static ?string $navigationLabel = 'Custom Navigation Label';
Alternatively, you may override the getNavigationLabel()
method:
public static function getNavigationLabel(): ?string
{
return 'Custom Navigation Label';
}
Customizing a navigation item's icon
To customize a navigation item's icon, you may override the $navigationIcon
property on the resource or page class:
protected static ?string $navigationIcon = 'heroicon-o-document-text';
Switching navigation item icon when it is active
You may assign a navigation icon which will only be used for active items using the $activeNavigationIcon
property:
protected static ?string $activeNavigationIcon = 'heroicon-o-document-text';
Sorting navigation items
By default, navigation items are sorted alphabetically. You may customize this using the $navigationSort
property:
protected static ?int $navigationSort = 3;
Now, navigation items with a lower sort value will appear before those with a higher sort value - the order is ascending.
Adding a badge to a navigation item
To add a badge next to the navigation item, you can use the getNavigationBadge()
method and return the content of the badge:
public static function getNavigationBadge(): ?string
{
return static::getModel()::count();
}
If a badge value is returned by getNavigationBadge()
, it will display using the primary color by default. To style the badge contextually, return either danger
, gray
, info
, primary
, success
or warning
from the getNavigationBadgeColor()
method:
public static function getNavigationBadgeColor(): ?string
{
return static::getModel()::count() > 10 ? 'warning' : 'primary';
}
Grouping navigation items
You may group navigation items by specifying a $navigationGroup
property on a resource and custom page:
protected static ?string $navigationGroup = 'Settings';
All items in the same navigation group will be displayed together under the same group label, "Settings" in this case. Ungrouped items will remain at the top of the sidebar.
Customizing navigation groups
You may customize navigation groups by calling navigationGroups()
in the configuration, and passing NavigationGroup
objects in order:
use Filament\Navigation\NavigationGroup;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->navigationGroups([
NavigationGroup::make()
->label('Shop')
->icon('heroicon-o-shopping-cart'),
NavigationGroup::make()
->label('Blog')
->icon('heroicon-o-pencil'),
NavigationGroup::make()
->label(fn (): string => __('navigation.settings'))
->icon('heroicon-o-cog-6-tooth')
->collapsed(),
]);
}
In this example, we pass in a custom icon()
for the groups, and make one collapsed()
by default.
Ordering navigation groups
By using navigationGroups()
, you are defining a new order for the navigation groups in the sidebar. If you just want to reorder the groups and not define an entire NavigationGroup
object, you may just pass the labels of the groups in the new order:
$panel
->navigationGroups([
'Shop',
'Blog',
'Settings',
])
Making navigation groups not collapsible
By default, navigation groups are collapsible. You may disable this behavior by calling collapsible(false)
on the NavigationGroup
object:
use Filament\Navigation\NavigationGroup;
NavigationGroup::make()
->label('Settings')
->icon('heroicon-o-cog-6-tooth')
->collapsible(false);
Or, you can do it globally for all groups in the configuration:
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->collapsibleNavigationGroups(false);
}
Collapsible sidebar on desktop
To make the sidebar collapsible on desktop as well as mobile, you can use the configuration:
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->sidebarCollapsibleOnDesktop();
}
By default, when you collapse the sidebar on desktop, the navigation icons still show. You can fully collapse the sidebar using the sidebarFullyCollapsibleOnDesktop()
method:
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->sidebarFullyCollapsibleOnDesktop();
}
Registering custom navigation items
To register new navigation items, you can use the configuration:
use Filament\Navigation\NavigationItem;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->navigationItems([
NavigationItem::make('Analytics')
->url('https://filament.pirsch.io', shouldOpenInNewTab: true)
->icon('heroicon-o-presentation-chart-line')
->group('Reports')
->sort(3),
NavigationItem::make('dashboard')
->label(fn (): string => __('filament-panels::pages/dashboard.title'))
->url(fn () => route('filament.admin.pages.dashboard'))
->isActiveWhen(fn () => request()->routeIs('filament.admin.pages.dashboard')),
// ...
]);
}
Conditionally hiding navigation items
You can also conditionally hide a navigation item by using the visible()
or hidden()
methods, passing in a condition to check:
use Filament\Navigation\NavigationItem;
NavigationItem::make('Analytics')
->visible(fn(): bool => auth()->user()->can('view-analytics'))
// or
->hidden(fn(): bool => ! auth()->user()->can('view-analytics')),
Disabling resource or page navigation items
To prevent resources or pages from showing up in navigation, you may use:
protected static bool $shouldRegisterNavigation = false;
Using top navigation
By default, Filament will use a sidebar navigation. You may use a top navigation instead by using the configuration:
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->topNavigation();
}
Advanced navigation customization
The navigation()
method can be called from the configuration. It allows you to build a custom navigation that overrides Filament's automatically generated items. This API is designed to give you complete control over the navigation.
Registering custom navigation items
To register navigation items, call the items()
method:
use App\Filament\Pages\Settings;
use App\Filament\Resources\UserResource;
use Filament\Navigation\NavigationBuilder;
use Filament\Navigation\NavigationItem;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->navigation(function (NavigationBuilder $builder): NavigationBuilder {
return $builder->items([
NavigationItem::make('Dashboard')
->icon('heroicon-o-home')
->isActiveWhen(fn (): bool => request()->routeIs('filament.admin.pages.dashboard'))
->url(route('filament.admin.pages.dashboard')),
...UserResource::getNavigationItems(),
...Settings::getNavigationItems(),
]);
});
}
Registering custom navigation groups
If you want to register groups, you can call the groups()
method:
use App\Filament\Pages\HomePageSettings;
use App\Filament\Resources\CategoryResource;
use App\Filament\Resources\PageResource;
use Filament\Navigation\NavigationBuilder;
use Filament\Navigation\NavigationGroup;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->navigation(function (NavigationBuilder $builder): NavigationBuilder {
return $builder->groups([
NavigationGroup::make('Website')
->items([
...PageResource::getNavigationItems(),
...CategoryResource::getNavigationItems(),
...HomePageSettings::getNavigationItems(),
]),
]);
});
}
Disabling navigation
You may disable navigation entirely by passing false
to the navigation()
method:
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->navigation(false);
}
Customizing the user menu
The user menu is featured in the top right corner of the admin layout. It's fully customizable.
To register new items to the user menu, you can use the configuration:
use Filament\Navigation\MenuItem;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->userMenuItems([
MenuItem::make()
->label('Settings')
->url(route('filament.admin.pages.settings'))
->icon('heroicon-o-cog-6-tooth'),
// ...
]);
}
Customizing the profile link
To customize the user profile link at the start of the user menu, register a new item with the profile
array key:
use Filament\Navigation\MenuItem;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->userMenuItems([
'profile' => MenuItem::make()->label('Edit profile'),
// ...
]);
}
For more information on creating a profile page, check out the authentication features documentation.
Customizing the logout link
To customize the user logout link at the end of the user menu, register a new item with the logout
array key:
use Filament\Navigation\MenuItem;
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->userMenuItems([
'logout' => MenuItem::make()->label('Log out'),
// ...
]);
}
Conditionally hiding user menu items
You can also conditionally hide a user menu item by using the visible()
or hidden()
methods, passing in a condition to check. Passing a function will defer condition evaluation until the menu is actually being rendered:
use App\Models\Payment;
use Filament\Navigation\MenuItem;
MenuItem::make()
->label('Payments')
->visible(fn (): bool => auth()->user()->can('viewAny', Payment::class))
// or
->hidden(fn (): bool => ! auth()->user()->can('viewAny', Payment::class))
Disabling breadcrumbs
The default layout will show breadcrumbs to indicate the location of the current page within the hierarchy of the app.
You may disable breadcrumbs in your configuration:
use Filament\Panel;
public function panel(Panel $panel): Panel
{
return $panel
// ...
->breadcrumbs(false);
}