π Bug Report: Tenant Menu Dropdown Not Appearing
Environment:
Filament: 4.x | Laravel: 12.x | Browser: Chrome/Firefox/Edge
Issue:
Tenant menu dropdown not appearing in Filament admin panel header, despite:
2 tenants (cooperatives) available
User can access all tenants via direct URL
Configuration appears correct
Expected:
Dropdown arrow next to tenant name
Clickable to select other tenants
Ability to switch between tenants
Actual:
No dropdown arrow visible
Tenant name appears as static text
Only direct URL switching works
2 Replies
Please report bugs on Github. This forum is for help not bug reports.
Please dd() somewhere on: Auth::user()->getTenants(). Do you get 2 back?
Because accordingly to this:
// Regular user can only access their cooperative
return collect([$this->cooperative])->filter();
You are only returning their cooperative.
