Can you hide the default menu but still discover the resources?
I have my own
navigationItems
array - and I only want to see those items in the navigation. In Filament2 it was enough to create a Filament::navigation
in my AppServiceProvider
, but in Filament3 the resources also get added to the menu. Now I saw that I could disable the resource discovery, and it would not create the default menu, but then the resources also are not available in the php artisan route:list command. And I need to have them available in order to link to them. Is there some other function that I'm missing when creating the panel/nav? I could not find this in the documentation, but maybe I am overlooking something2 Replies
Have you seen the "Advanced customization" section in the docs?
https://filamentphp.com/docs/3.x/panels/navigation#advanced-navigation-customization
That did the trick, thank you!