Hi everyone Im new to filament and I am encountering this error when making a filament user
Filament has not been installed yet: php artisan filament:install --panels
Filament has not been installed yet: php artisan filament:install --panels
I did install
php artisan filament:install --panels
php artisan filament:install --panels
and got a WARN
We've attempted to register the AdminPanelProvider in your [config/app.php] file as a service provider. If you get an error while trying to access your panel then this process has probably failed. You can manually register the service provider by adding it to the [providers] array.
We've attempted to register the AdminPanelProvider in your [config/app.php] file as a service provider. If you get an error while trying to access your panel then this process has probably failed. You can manually register the service provider by adding it to the [providers] array.
am I doing something wrong?
Solution
Full credit to @awcodes for the answer (I'm just copy/pasting it from the chat channel for posterity's sake):
"Add the
AdminServiceProvider
AdminServiceProvider
to your providers array in
config/app.php
config/app.php
. It tries to do it automatically, but for some reason in your app it couldn’t."