#Panel login - 405 Method Not Allowed
5 messages · Page 1 of 1 (latest)
To add: This is in production mode
I get a error on the livewire script:
/livewire/livewire.min.js?id=df3a17f2 net::ERR_ABORTED 404 (Not Found)
When going to this URL, the livewire script loads fine
https://filamentphp.com/docs/3.x/panels/users
you need to add implements FilamentUser to your User class (I think)
class User extends Authenticatable implements FilamentUser
and implement canAccessPanel for example:
public function canAccessPanel(Panel $panel): bool
{
return true;
}