@if(count($currencies = get_all_currencies()) > 1)
  • {{ get_application_currency()->title }}
      @foreach ($currencies as $currency) @if ($currency->id !== get_application_currency_id())
    • {{ $currency->title }}
    • @endif @endforeach
  • @endif
  • @if (auth('customer')->check()) {{ __('Hi, :name', ['name' => $name]) }} @else {{ __('Login') }} @endif