Class "Filament\PanelProvider" not found
I create new project and install v3 using
composer require -W filament/tables:"^3.0@beta"
and php artisan filament:install --panels
after filament:install
I got error in AdminPanelProvider.. It look like I don't have "panels' inside vendor
Version: v3.0.0-beta174 Replies
The panels are in vendor/filament/filament it self, there is also the PanelProvider. You just installed the tables package. I guess something has gone wrong there.
Official documentation says that you have to install
composer require filament/filament:"^3.0@beta"
(https://beta.filamentphp.com/docs/3.x/panels/installation)I also don't have the 'filament' folder inside vendor.. I got so many error while trying to install using docs
you installed tables and expected panels to be installed?
Oh, my bad..