@if(app()->isLocal()) Wave Installation @if(Request::get('complete')) @php \Illuminate\Support\Facades\Artisan::call('db:seed', [ '--force' => true ]); \Illuminate\Support\Facades\Artisan::call('storage:link'); Auth::login(\App\Models\User::first()); @endphp

Successfully Installed 🎉

Click the continue button below to view your new SAAS application.

Continue
@else @php try { $user = \App\Models\User::first(); header('Location: /'); exit; } catch (\Illuminate\Database\QueryException $e) { // Continue with the installation process } if (!\Illuminate\Support\Facades\File::exists(database_path('database.sqlite'))) { \Illuminate\Support\Facades\File::put(database_path('database.sqlite'), ''); } \Illuminate\Support\Facades\Artisan::call('migrate', [ '--force' => true ]); @endphp

Welcome to Wave

If you're ready to get started, click on the 'Install Wave' button below. In this future this installation screen will have a few setup options.

Install Wave
@endif @endif