10 lines
342 B
PHP
10 lines
342 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('documents.optionChild', [
|
|
'childs' => $child->childs,
|
|
'level' => $level + 1,
|
|
])
|
|
@endif
|
|
@endforeach
|