@extends('installer::install') @section('step')

Verifying write and read permissions on folders

@foreach (config('installer.folders') as $check)
{{ str_replace('/', DIRECTORY_SEPARATOR, $check['name']) }}
@if (@File::chmod($check['check']['value']) < 755) @else @endif
@endforeach
@if ($result) Next step @else Reload @endif
@endsection