Update AUK edit
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
@foreach ($childs as $child)
|
||||
@if ($parent_id == $child->id)
|
||||
<option value="{{ $child->id }}" selected>{{ str_pad('', $level, '-') . ' ' . $child->name }}</option>
|
||||
<option value="{{ $child->id }}" selected>{{ str_pad('', $level, '-') }} {{ $child->auk_name }}
|
||||
({{ $child->auk_path }})</option>
|
||||
@else
|
||||
<option value="{{ $child->id }}">{{ str_pad('', $level, '-') . ' ' . $child->name }}</option>
|
||||
<option value="{{ $child->id }}">{{ str_pad('', $level, '-') }} {{ $child->auk_name }}
|
||||
({{ $child->auk_path }})</option>
|
||||
@endif
|
||||
@if (count($child->childs))
|
||||
@include('auks.optionChildSelected', [
|
||||
|
||||
Reference in New Issue
Block a user