$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:
NavigationItem::make('Add product')
->url(fn () => CreateProduct::getUrl())
->icon('heroicon-o-plus-circle')
->group('Products')
->visible(function() {
// here i need to check current user permissions
})
->sort(-1),
NavigationItem::make('Add product')
->url(fn () => CreateProduct::getUrl())
->icon('heroicon-o-plus-circle')
->group('Products')
->visible(function() {
// here i need to check current user permissions
})
->sort(-1),
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
jamesro
jamesroOP3d ago
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 😦
toeknee
toeknee3d ago
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
jamesro
jamesroOP3d ago
can you provide some details about custom navigation items method ?
toeknee
toeknee3d ago
Sorry I halve read it, heres some code for you based on your original method
->navigationItems([
NavigationItem::make('Add Product')
->visible(fn () => auth()->user()?->can('create Product'))
->url(CreateProduct::getUrl(
[],
true,
'panel_id_here',
auth()->user()->currentTeam
))
->group('Products')
->icon('heroicon-s-arrow-right-circle')
->sort(-1),
])
->navigationItems([
NavigationItem::make('Add Product')
->visible(fn () => auth()->user()?->can('create Product'))
->url(CreateProduct::getUrl(
[],
true,
'panel_id_here',
auth()->user()->currentTeam
))
->group('Products')
->icon('heroicon-s-arrow-right-circle')
->sort(-1),
])
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
jamesro
jamesroOP3d ago
thanks, seems works if I do a custom method in a service, then call that service method as: ->navigationItems(app(NavigationService::class)->panelNavigationItems())
toeknee
toeknee3d ago
That should work, also should work if using a custom middleware too.

Did you find this page helpful?