@extends('layouts.app')
@section('title', 'Requirements Check')
@section('content')
@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))
@else
Please fix the issues above to continue.
@endif
@endsection