{{ Str::limit(get_site_title(), 2, '.') }} {{ get_site_title() }}
Toggle navigation
  • @if (Auth::user()->image) {{ trans('app.avatar') }} @else {{ trans('app.avatar') }} @endif {{ trans('app.welcome') . ' ' . Auth::user()->getName() }}
  • {{ trans('app.store_front') }}
  • @if ($count_message = $unread_messages->count()) {{ $count_message }} @endif
    • {{ trans('messages.message_count', ['count' => $count_message]) }}
      • @forelse($unread_messages as $message) @continue($loop->index > 5)
      • {{ trans('app.avatar') }}

        {!! $message->subject !!} {{ $message->created_at->diffForHumans() }}

        {{ strip_tags(Str::limit($message->message, 100)) }}

      • @endforeach
    • {{ trans('app.go_to_msg_inbox') }}
  • @if ($count_notification = Auth::user()->unreadNotifications->count()) {{ $count_notification }} @endif
    • {{ trans('messages.notification_count', ['count' => $count_notification]) }}
      • @foreach (Auth::user()->unreadNotifications as $notification)
      • @php $notification_view = 'admin.partials.notifications.' . Str::snake(class_basename($notification->type)); @endphp @includeFirst([$notification_view, 'admin.partials.notifications.default'])
      • @endforeach
    • {{ trans('app.view_all_notifications') }}
  • @if (is_incevio_package_loaded('announcement')) @if (Auth::user()->isMerchant() ? ($active_announcements = get_merchant_announcements()) : ($active_announcements = get_all_announcements()))
  • {{-- @if ($active_announcement && $active_announcement->updated_at > Auth::user()->read_announcements_at) --}} {{-- --}} {{-- @endif --}}
      @foreach ($active_announcements as $active_announcement)
    • {!! $active_announcement->parsed_body !!} @if ($active_announcement->action_url) {{ $active_announcement->action_text }} @endif
    • @endforeach
  • @endif @endif @desktop @if (Auth::user()->isMerchant() && is_incevio_package_loaded('wallet'))
  • {{ trans('wallet::lang.balance') }}: {{ get_formated_currency(Auth::user()->shop->balance, 2, config('system_settings.currency.id')) }}
  • @endif @enddesktop
  • @desktop{{ trans('app.account') }}@enddesktop
  • {{ trans('app.log_out') }}
  • {{-- --}}