@vite(['resources/css/app.css', 'resources/js/app.js']) {{-- Background decoration --}} {{-- Header --}}
Q

Quickro

POS Cloud Suite

Installation Wizard
{{-- Steps bar --}} @php $steps = [ ['label' => 'Welcome', 'route' => 'install.welcome'], ['label' => 'Requirements', 'route' => 'install.requirements'], ['label' => 'License', 'route' => 'install.purchase-code'], ['label' => 'Database', 'route' => 'install.database'], ['label' => 'Migrate', 'route' => 'install.migrate'], ['label' => 'Admin', 'route' => 'install.admin'], ['label' => 'Done', 'route' => 'install.complete'], ]; $currentRoute = Route::currentRouteName(); $currentIndex = collect($steps)->search(fn($s) => $s['route'] === $currentRoute) ?: 0; @endphp
    @foreach($steps as $i => $step)
  1. @if($i < $currentIndex) @else {{ $i + 1 }} @endif {{ $step['label'] }} @if(!$loop->last) @endif
  2. @endforeach
{{-- Main content --}}
@yield('content')
{{-- Footer --}}