Files
mmc_info/resources/views/mmc/optionChild.blade.php
Александр Бабкин 97bacd4423 Continue MMC
2022-07-14 11:01:44 +03:00

11 lines
343 B
PHP

@foreach ($childs as $child)
<option value="{{ $child->id }}">{{ str_pad('', $level, '-') . ' ' . $child->auk_name }}
({{ $child->auk_path }})</option>
@if (count($child->childs))
@include('mmc.optionChild', [
'childs' => $child->childs,
'level' => $level + 1,
])
@endif
@endforeach