diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index 226c0e54cbce67b055996411a9b749e9fce089e8..c32bf2f356c4afa87a484c427ff8f091d148a9db 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -2,13 +2,13 @@ namespace App\Console\Commands; -use App\Models\Template; use App\Models\Pengelola; +use App\Models\Template; use Illuminate\Console\Command; +use Symfony\Component\Process\Process; -use function Laravel\Prompts\text; use function Laravel\Prompts\select; -use Symfony\Component\Process\Process; +use function Laravel\Prompts\text; class Install extends Command { @@ -192,7 +192,7 @@ public function handle() $this->info('Membuat symlink public_html'); $process = new Process(['ln', '-s', 'public_html', 'public']); $process->run(); - } + } $this->info('Membuat storage symlink'); $this->call('storage:link'); $this->info('Simpede berhasil diinstall. Silakan login dengan user admin yang baru saja dibuat.');