@extends('install.layout', ['title' => 'Server Requirements', 'step' => 2]) @section('content')

Server Requirements

PHP version 8.1.0 required
{{ $phpVersion }}
Extensions
@foreach($extResults as $ext => $ok)
{{ $ext }}
{{ $ok ? 'OK' : 'Missing' }}
@endforeach
Permissions
@foreach($writable as $path => $ok)
{{ $path }}
{{ $ok ? 'Writable' : 'Not writable' }}
@endforeach
@if(!$allOk)
Please fix the failing items above before continuing.
@endif Next
@endsection