Files
mmc_info/resources/views/mmc/tableAukChild.blade.php
Александр Бабкин 58c92adfbc MMC continue
2022-07-14 12:39:41 +03:00

17 lines
448 B
PHP

@foreach ($childs as $child)
<tr class="p-2 border border-gray-200 text-center">
<td class="p-2 border border-gray-200 text-center">
{{ str_pad('', $level, '-') . ' ' . $child->auk_name }}
</td>
<td>
</td>
</tr>
@if (count($child->childs))
@include('mmc.tableAukChild', [
'childs' => $top_auk->childs,
'level' => $level + 1,
])
@endif
@endforeach