Add storage:link to setup command (#1233)

This commit is contained in:
Boy132 2025-04-11 23:23:23 +02:00 committed by GitHub
parent 98d8510f11
commit 7409f020ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,6 @@
namespace App\Console\Commands\Environment; namespace App\Console\Commands\Environment;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;
class AppSettingsCommand extends Command class AppSettingsCommand extends Command
{ {
@ -21,9 +20,13 @@ class AppSettingsCommand extends Command
if (!config('app.key')) { if (!config('app.key')) {
$this->comment('Generating app key'); $this->comment('Generating app key');
Artisan::call('key:generate'); $this->call('key:generate');
} }
Artisan::call('filament:optimize'); $this->comment('Creating storage link');
$this->call('storage:link');
$this->comment('Caching components & icons');
$this->call('filament:optimize');
} }
} }