diff --git a/src/Commands/InstallCommand.php b/src/Commands/InstallCommand.php index 3dd2bb3..da6355b 100644 --- a/src/Commands/InstallCommand.php +++ b/src/Commands/InstallCommand.php @@ -138,7 +138,10 @@ public function register_plugins(): void if (! File::exists($providerPath)) { info('The Filament AdminPanelProvider.php or FilamentServiceProvider.php file does not exist. We try to install now ...'); - $this->call('artisan filament:install --panels'); + + $this->call('filament:install', ['--panels' => true]); + + info('Filament seems to be installed. Now proceeding with Moox Jobs installation ...'); }