@foreach($menus as $menu)
@if($menu->parent_id === null)
@foreach($menu->getChildAll() as $child)
{{ $child->name }} {!! ($child->target === '_blank') ? '' : '' !!}
{{ $child->link }}
{!! ($child->status) ? '' : '' !!}
@endforeach
@endif
@endforeach
@endif