@foreach (menu()->getItems('admin') as $menuItem)

{{ $menuItem->getName() }}

@if ( ! in_array($menuItem->getKey(), ['settings', 'configuration']) && $menuItem->haveChildren()) @endif
@if ( ! in_array($menuItem->getKey(), ['settings', 'configuration']) && $menuItem->haveChildren() )
@foreach ($menuItem->getChildren() as $subMenuItem)

{{ $subMenuItem->getName() }}

@endforeach
@endif
@endforeach