🥂

Buy Me A Drink Installation

Follow the setup wizard steps below to configure your database, environment, and master admin account.

@php $currentRoute = request()->route()->getName(); $step = 1; $stepTitle = 'Server Requirements Check'; if ($currentRoute === 'install.database') { $step = 2; $stepTitle = 'Database Credentials'; } if ($currentRoute === 'install.migrate') { $step = 3; $stepTitle = 'Database Migrations'; } if ($currentRoute === 'install.admin') { $step = 4; $stepTitle = 'Super Admin Setup'; } if ($currentRoute === 'install.finishView') { $step = 5; $stepTitle = 'Installation Completed'; } @endphp
Step {{ $step }} of 5: {{ $stepTitle }}
1
2
3
4
5
@if(session('error'))
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
@yield('step_content')