Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/Console/Commands/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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.');
Expand Down