Hi i just upgrade v3 to v4.
On v3 panel with ->tenant(model: Company::class, slugAttribute: 'slug') works, but after upgrade i got 500 error without any log (storage\log\laravel.log), so i can't debug what happend!!
if i remove ->tenan(xxx) from the panel, all work.
i create a new panel using php artisan make:filament-panel clients, add ->tenant(xxx) and got the same error !!
I'm using php artisan serve, because i testing on local.
All the User Model configuration:
implements FilamentUser, HasDefaultTenant, HasName, HasTenants
and
public function canAccessPanel(Panel $panel)
public function canAccessTenant(Model $tenant)
public function getFilamentName():
public function getTenants(Panel $panel)
are the same from v3 .. how can i debug this error !