How to load different ListPage based on permission on multi-tenant resource?
Hello,
I am using multi-tenancy on my Filament Project and using Spatie roles and permissions.
I am trying to load different ListPage on my resource based on the permission as you can see in the code below, but the getPages() doesn't recognize Filament::getTenant()->id which is causing the problem to check for the permission for the authenticated user.
My question is how do I make this load different index route based on the permission please?
Thank you
3 Replies
the getPages() function doesn't even recognize the authenticated user by auth()->user() or even Filament::auth()->user()
doesn't even recognize the authenticated user by auth()->user() or even Filament::auth()->user()Because the user is not authenticated yet. User are authenticated through middlewares and that code runs way later. Either 1) Define one page and load different data based on the role 2) Define both pages and overwrite the
getNavigationItems()
method so only one is visibleHello @Dennis Koch, I understand about the code running later.
I am actually using that resource as a DashboardResource and set the slug to be "/" which works great. But the issue now is permission, some users don't have permissions to see the booking or create bookings so I wanted to show only the AccountWidget and hide the whole Stats + Resource table from them. Is it something that can be done within the DashboardResource or ListDashboards classes ?
Btw the getNavigationItems() can be done for same route ? Like if I want to load the DashboardResource when permission is true and UserResource when the permission is false ?
Thank you