@extends('installer.layout') @section('content')

System Requirements

PHP Version

PHP {{ $checks['php_version']['required'] }} or higher @if($checks['php_version']['meets']) {{ $checks['php_version']['current'] }} @else {{ $checks['php_version']['current'] }} @endif

Required PHP Extensions

@foreach($checks['extensions']['required'] as $ext => $loaded)
{{ $ext }} @if($loaded) Loaded @else Not Loaded @endif
@endforeach

Directory Permissions

@foreach($checks['permissions'] as $dir => $status)
{{ $dir }} @if($status['exists'] && $status['writable']) Writable @else Not Writable @endif
@endforeach
Back @if($meetsRequirements) Continue to Environment Setup @else @endif
@endsection