@foreach($menus as $menu) @php $menuTitle = $menu->getTranslation('title', app()->getLocale(), false); @endphp @if($menuTitle)
  • {{ $menuTitle }} @if($menu->children->count()) > @endif > @if($menu->children->count())
      @foreach($menu->children as $child) @php $childTitle = $child->getTranslation('title', app()->getLocale(), false); @endphp @if($childTitle)
    • {!! nl2br(e($childTitle)) !!}
    • @endif @endforeach
    @endif
  • @endif @endforeach
  • ES | EN