@foreach ($menu_nodes as $key => $node) @php $title = $node->title; @endphp
  • css_class => $node->css_class, 'has-dropdown' => $node->has_child ])> target !== '_self') target="{{ $node->target }}" @endif> {!! $node->icon_html !!} @if ($title) {{ $title }} @endif @if ($node->has_child) {!! Menu::generateMenu([ 'menu' => $node, 'menu_nodes' => $node->child, 'view' => 'menu', 'options' => ['class' => 'submenu'], ]) !!} @endif
  • @endforeach