403 Forbidden in production

Just deployed my first app to production (Forge + DigitalOcean). Login/Register work fine, but after login I get 403 everywhere.

I implemented the FilamentUser contract in my User model per 3.x docs but I can't get around the 403.

    public function canAccessPanel(Panel $panel): bool
    {
        return true;
    }


Any suggestions?
Was this page helpful?