@extends('install.view')
@section('perm_step')
active
@endsection
@section('content')
@if ($windows)
You are using Windows, we cannot guarantee that the executable permission are properly set.
All the executable
checks have been overridden with true
.
@endif
@foreach ($permissions as $permission)
-
{{ $permission['folder'] }}
@if (count($permission['permission']) < 4)
@for ($i = 0;$i < 4 - count($permission['permission']); $i++)
@endfor
@endif
@foreach ($permission['permission'] as $perm)
@if($perm[1] & 1)
@else
@endif
{{ $perm[0] }}
@endforeach
@endforeach
@if (empty($errors))
@else
@endif
@endsection