FilamentF
Filament3y ago
Noxo

Navigation Sorting

How can I put settings item at the end of the navigation list?
No matter what I change, I can’t place NavigationItem after NavigationGroup

->navigationItems([
    NavigationItem::make('settings')
        ->label(fn () : string => __('admin.pages.titles.settings'))
        ->url(fn () : string => \App\Filament\Pages\Settings\General::getUrl())
        ->icon('heroicon-o-cog')
        ->sort(999),
])
Screenshot_2023-09-17_at_14.52.59.png
Was this page helpful?