¨4.0.1¨

This commit is contained in:
¨NW¨
2023-12-03 14:07:47 +00:00
parent c08b36d1b6
commit f35052522d
1112 changed files with 43019 additions and 24987 deletions

View File

@@ -0,0 +1,60 @@
<div class="has-scrollable-content permissions d-flex flex-column" v-else-if="step === 2" v-cloak>
<div class="header overflow-hidden">
<h3>Permissions</h3>
<p class="excerpt">Please make sure that the PHP has proper access to the following files and directories.</p>
</div>
<div class="content position-relative flex-grow-1 overflow-hidden">
<simplebar class="scrollable-content position-absolute" data-simplebar-auto-hide="false">
<div class="box">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Files</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@foreach ($permission->files() as $label => $satisfied)
<tr>
<td>{{ $label }}</td>
<td>
<span class="mdi mdi-{{ $satisfied ? 'checkbox-marked-circle' : 'close-circle' }}"></span>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
<div class="box">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Directories</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@foreach ($permission->directories() as $label => $satisfied)
<tr>
<td>{{ $label }}</td>
<td>
<span class="mdi mdi-{{ $satisfied ? 'checkbox-marked-circle' : 'close-circle' }}"></span>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</simplebar>
</div>
</div>