Continue MMC
This commit is contained in:
13
resources/views/mmc/tableAukChild.blade.php
Normal file
13
resources/views/mmc/tableAukChild.blade.php
Normal file
@@ -0,0 +1,13 @@
|
||||
@foreach ($childs as $child)
|
||||
<tr class="p-2 border border-gray-200 text-center">
|
||||
<td>
|
||||
{{ str_pad('', $level, '-') . ' ' . $child->auk_name }}
|
||||
</td>
|
||||
</tr>
|
||||
@if (count($child->childs))
|
||||
@include('mmc.tableAukChild', [
|
||||
'childs' => $top_auk->childs,
|
||||
'level' => $level + 1,
|
||||
])
|
||||
@endif
|
||||
@endforeach
|
||||
Reference in New Issue
Block a user