Panel login - 405 Method Not Allowed

Oops! An Error Occurred The server returned a "405 Method Not Allowed". Something is broken. Please
2 Replies
Zwifs
ZwifsOP3w ago
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)
/livewire/livewire.min.js?id=df3a17f2 net::ERR_ABORTED 404 (Not Found)
When going to this URL, the livewire script loads fine
alan
alan3w ago
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
class User extends Authenticatable implements FilamentUser
and implement canAccessPanel for example:
public function canAccessPanel(Panel $panel): bool
{
return true;
}
public function canAccessPanel(Panel $panel): bool
{
return true;
}

Did you find this page helpful?