Files
mmc_info/resources/views/auks/tableChild.blade.php
Александр Бабкин fa2df0f944 update create AUK
2022-07-13 08:22:31 +03:00

23 lines
670 B
PHP

@foreach ($childs as $child)
<tr>
<td class="p-2 border border-gray-200">
{{ str_pad('', $level, '-') . ' ' . $child->auk_name }}
</td>
<td class="p-2 border border-gray-200">
{{ $child->auk_path }}
</td>
<td class="p-2 border border-gray-200">
{{ $child->image_dir }}
</td>
<td class="p-2 border border-gray-200">
@include('auks.actions', ['auk' => $child])
</td>
</tr>
@if (count($child->childs))
@include('auks.tableChild', [
'childs' => $child->childs,
'level' => $level + 1,
])
@endif
@endforeach