@extends('install.layout', ['currentStep' => 1])
@section('title', 'System Requirements')
@section('content')
{{-- ── Step header ── --}}
System Requirements
Verifying your server meets the minimum requirements for TicketDjama.
{{-- ── Requirement groups ── --}}
@foreach ($checks->groupBy('category') as $category => $items)
{{ $category }}
@foreach ($items as $check)
@if ($check['status'] === 'pass')
@elseif ($check['status'] === 'warn')
@else
@endif
{{ $check['name'] }}
{{ $check['note'] }}
@endforeach
@endforeach
{{-- ── Blocker notice ── --}}
@if (! $canContinue)
Action required.
One or more required items failed. Fix the issues above, then
refresh this page.
@endif
{{-- ── Actions ── --}}
@endsection