thijzie
How to Implement Multi-Tenancy with Admin View Option in FilamentPHP v3?
How about overwriting the scopedToTenancy method based on the user profile? The admin still needs a tenant, but can see all table values?
E.G.
public static function isScopedToTenant(): bool
{
return !auth()->user()->isAdmin();
}
17 replies
Table Filter Position
I have the same question as Sarah. Basically I want to move the filter to the left side, and it needs to be fixed next to the table, like a menu.
In other words, I don't want to expand the filter column, and the permanently expanded column needs to be placed left of the table.
Perhaps something like FiltersLayout::LeftOfContent would be nice.
7 replies