@extends('layouts.app') @section('title', 'Requirements Check') @section('content')

System Requirements

Checking if your server is ready.

@foreach($results as $type => $status)
{{ $type }} @if($status) @else @endif
@endforeach

Directory Permissions

@foreach($permissions as $path => $status)
{{ $path }} @if($status) Writable @else Not Writable @endif
@endforeach @if(!in_array(false, $results) && !in_array(false, $permissions))
Next Step: Database
@else
Please fix the issues above to continue.
@endif
@endsection