Progress
@php
$steps = [
[1, 'Requirements', 'install.requirements'],
[2, 'Database', 'install.database'],
[3, 'Migrations', 'install.migrate'],
[4, 'Administrator', 'install.admin'],
[5, 'Complete', 'install.complete'],
];
@endphp
@foreach ($steps as [$num, $label, $route])
@php
$state = $num < ($currentStep ?? 1)
? 'done'
: ($num === ($currentStep ?? 1) ? 'active' : 'pending');
@endphp
-
{{-- Step indicator bubble --}}
@if ($state === 'done')
@else
{{ $num }}
@endif
{{ $label }}
@endforeach
{{-- Sidebar footer --}}