From cda2bcf22b993b4d59b340a407fcde27151a6fa4 Mon Sep 17 00:00:00 2001 From: mooxbot Date: Thu, 11 Jan 2024 10:40:23 +0000 Subject: [PATCH] Jobs installer improved --- src/Commands/InstallCommand.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 ...'); }