[Filament v3] Resource not showing in sidebar

Hi everyone, I need help with my Filament v3 panel setup.

I created a resource using:
php artisan make:filament-resource Mahasiswa

The resource works fine (form and table are defined), but it doesn't appear in the sidebar at all.

I already did:
  • Registered DashboardPanelProvider in config/app.php
  • Set .panel() to use ->discoverResources(...)
  • Cleared caches with php artisan optimize:clear
  • Verified that App\Filament\Resources\MahasiswaResource::class exists
There's no error in the log, and I'm using Laravel 11

Any idea what I might be missing?

Thanks in advance πŸ™
Solution
Can you check the model policy. It should return true for viewAny method
Was this page helpful?