$shouldRegisterNavigation on CreateRecord
Hello,
How can i make my CreateRecord from resourse to use $shouldRegisterNavigation so I can add a custom navigation item ?
I've tried addming in my AdminPanelProvider:
I'm using mutlti tenants so i need to be able to check current user permissions on the visible() method of the navigation item but unfortunately, seems Filament::getTenant() is not available at that point it comes null
Any suggestions?
7 Replies
take a look on this built-in feature
https://filamentphp.com/docs/3.x/panels/resources/getting-started#resource-sub-navigation
Thanks but unfortunately, it's not what i want, i'm using horizontal navigation, and I need a link to create record page as showed above 😦
So I would say to use the custom Navigation items method. OR try and use the ->pages() on the panel to manually set the page
can you provide some details about custom navigation items method ?
Sorry I halve read it, heres some code for you based on your original method
You would need to set the currentTeam method to load a team from a current_team id on the user model.
Else, you can use a middleware to register the menu item too and use the filament facade
thanks, seems works if I do a custom method in a service, then call that service method as:
->navigationItems(app(NavigationService::class)->panelNavigationItems())
That should work, also should work if using a custom middleware too.