@if(Auth::check())
  • {{ __('Dashboard') }}

  • @endif
  • {{ __('Live Map') }}

  • {{ __trans_choice('Pilot', 2) }}

  • {{-- Show the module links that don't require being logged in --}} @foreach($moduleSvc->getFrontendLinks($logged_in=false) as &$link)
  • {{ __($link['title']) }}

  • @endforeach @if(!Auth::check())
  • {{ __('Login') }}

  • {{ __('Register') }}

  • @else
  • {{ __trans_choice('Flight', 2) }}

  • {{ __trans_choice('PIREP', 2) }}

  • {{ __('Profile') }}

  • {{ __trans_choice('Download', 2) }}

  • @role('admin')
  • {{ __('Administration') }}

  • @endrole {{-- Show the module links for being logged in --}} @foreach($moduleSvc->getFrontendLinks($logged_in=true) as &$link)
  • {{ __($link['title']) }}

  • @endforeach
  • {{ __('Log Out') }}

  • @endif