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.
public static function getPages(): array
{
$user = auth()->user();

setPermissionsTeamId(Filament::getTenant()->id);
return [
'index' => ($user->can('create booking')) ? Pages\ListBookings::route('/') : ListUsers::route('/'),
'create' => Pages\CreateBooking::route('/create'),
'edit' => Pages\EditBooking::route('/{record}/edit'),
];
}
public static function getPages(): array
{
$user = auth()->user();

setPermissionsTeamId(Filament::getTenant()->id);
return [
'index' => ($user->can('create booking')) ? Pages\ListBookings::route('/') : ListUsers::route('/'),
'create' => Pages\CreateBooking::route('/create'),
'edit' => Pages\EditBooking::route('/{record}/edit'),
];
}
My question is how do I make this load different index route based on the permission please? Thank you
3 Replies
mohdaftab
mohdaftabOP4w ago
the getPages() function doesn't even recognize the authenticated user by auth()->user() or even Filament::auth()->user()
Dennis Koch
Dennis Koch4w ago
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 visible
mohdaftab
mohdaftabOP4w ago
Hello @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

Did you find this page helpful?