11 lines
343 B
PHP
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
|