Logo
Logo
@php $links = json_decode($menuInfos, true); @endphp
    @foreach ($links as $link) @php $href = get_href($link, $currentLanguageInfo->id); @endphp @if (!array_key_exists('children', $link))
  • {{ __($link['text']) }}
  • @else
  • {{ $link['text'] }}
      @foreach ($link['children'] as $level2) @php $l2Href = get_href($level2, $currentLanguageInfo->id); @endphp
    • {{ __($level2['text']) }}
    • @endforeach
  • @endif @endforeach
@if (!Auth::guard('organizer')->check())
{{ __('Login') }} {{ __('Signup') }}
@else
{{ __('Dashboard') }} {{ __('Logout') }}
@endif