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

System Requirements

Verify your environment meets PNLCS requirements before continuing.

PHP ≥ 8.4 {{ $phpOk ? '✓' : '✗' }} {{ $php }}
PHP Extensions
@foreach($extensions as $ext => $ok) {{ $ok ? '✓' : '✗' }} {{ $ext }} @endforeach
Writable Directories
@foreach($writable as $path => $ok)
{{ $path }} {{ $ok ? '✓ writable' : '✗ not writable' }}
@endforeach
Built Assets
@foreach($assets as $path => $ok)
{{ $path }} {{ $ok ? '✓ present' : '✗ missing — run composer install / npm run build' }}
@endforeach
@if($allOk) Continue → @else
Please resolve the missing requirements above and reload this page.
Re-check @endif @endsection