@foreach ($menu_nodes as $key => $row)
  • {!! $row->icon_html !!} {{ $row->title }} @if ($row->has_child) {!! BaseHelper::renderIcon('ti ti-chevron-down') !!} @endif @if ($row->has_child) {!! Menu::generateMenu([ 'menu' => $menu, 'menu_nodes' => $row->child, 'view' => 'main-menu', 'options' => ['class' => 'sub-menu'], ]) !!} @endif
  • @endforeach