@if($parent)
{{ $parent->title }}
@if ($parent->childrens->isNotEmpty())
@foreach ($parent->childrens()->orderBy('order','asc')->get() as $child)
- id==$child->id) class="active" @endif>
@if(in_array($parent->id,config('setting.no_href')) || in_array($child->id,config('setting.no_href')))
{{ $child->title }}
@else
{{ $child->title }}
@endif
@endforeach
@endif
@endif