@extends('layouts.guest') @section('title', 'System Requirements') @section('subtitle', 'Verify server requirements') @section('content') @include('install._steps', ['step' => 2])
{{ $checks['php_version']['label'] }} @if($checks['php_version']['passed']) {{ $checks['php_version']['message'] }} @else {{ $checks['php_version']['message'] }} @endif
@foreach(['extensions' => 'PHP Extensions', 'writable' => 'Writable Paths'] as $key => $title)
{{ $title }}
@endforeach @php $allPassed = $checks['php_version']['passed'] && collect($checks['extensions'])->every(fn($c) => $c['passed']) && collect($checks['writable'])->every(fn($c) => $c['passed']); @endphp
Back @if($allPassed) Continue @else @endif
@endsection