error installing filament

i have installed laravel 12 but then when i try to execute this
php artisan filament:install --panels
php artisan filament:install --panels
then the adminPanelProvider has been installed. After that when i try this
php artisan make:filament-user
php artisan make:filament-user
i get this error
Filament has not been installed yet: php artisan filament:install --panels
Filament has not been installed yet: php artisan filament:install --panels
5 Replies
Matthew
Matthew5d ago
check that the service provider was registered in bootstrap/providers.php The service provider is called app/Providers/Filament/AdminPanelProvider.php
raheel3031
raheel3031OP5d ago
yes it was registered
Matthew
Matthew5d ago
try:
php artisan optimize:clear
php artisan filament:install --panels
php artisan make:filament-user
php artisan optimize:clear
php artisan filament:install --panels
php artisan make:filament-user
If that doesnt work, go to your app/Providers/Filament/AdminPanelProvider.php, and add ->default() to the panel so something like
public function panel(Panel $panel): Panel
{
return $panel
->default()
// ...
}
public function panel(Panel $panel): Panel
{
return $panel
->default()
// ...
}
raheel3031
raheel3031OP4d ago
Yeah I solved it
Dennis Koch
Dennis Koch4d ago
What was the issue?

Did you find this page helpful?