@extends('installer.layout') @section('title', 'Server Requirements — Quickro POS Installer') @section('content') @php $allRequired = collect($requirements)->where('required', true)->every(fn($r) => $r['installed']); $allWritable = collect($permissions)->every(fn($p) => $p['writable']); $canProceed = $allRequired && $allWritable; @endphp

Server Requirements

Quickro POS needs the following PHP extensions and directory permissions. Required items marked in red must be resolved before you can continue.

{{-- PHP Extensions --}}

PHP Extensions

{{-- Folder Permissions --}}

Folder Permissions

{{-- Actions --}}
@if($canProceed) Continue to License @else
Please resolve the issues above and refresh this page before continuing.
@endif
@endsection