🥂
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