{{ Str::limit(get_site_title(), 2, '.') }} {{ get_site_title() }}
Toggle navigation
  • {{ 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() }}

        {{ 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 ($active_announcement = get_global_announcement())
  • @if ($active_announcement && $active_announcement->updated_at > Auth::user()->read_announcements_at) @endif
    • {!! $active_announcement->parsed_body !!} @if ($active_announcement->action_url) {{ $active_announcement->action_text }} @endif
  • @endif @endif @if (Auth::user()->isMerchant() && is_incevio_package_loaded('wallet'))
  • {{ trans('wallet::lang.balance') }}: {{ get_formated_currency(Auth::user()->shop->balance, config('system_settings.decimals', 2)) }}
  • @endif
  • @if (Auth::user()->image) {{ trans('app.avatar') }} @else {{ trans('app.avatar') }} @endif {{ trans('app.account') }}
  • {{ trans('app.log_out') }}
  • {{-- --}}