• {{ __('Home') }}
  • {{ __('Category') }}
      @foreach ($categories as $category)
    • {{ $category->name }} @if ($category->child->count() > 0) @endif @if ($category->child->count() > 0)
        @foreach ($category->child as $sub)
      • {{ $sub->name }}
      • @endforeach
      @endif
    • @endforeach
  • {{ __('Most Popular') }}
  • {{ __('About Us') }}
  • {{ __('Contact') }}
@auth {{ getUnreadNotificationsCount(true) }} @endauth @auth {{ $wishListcount }} @endauth @auth {{ __('Post Your Ad') }} @else {{ __('Post Your Ad') }} @endauth
@if (auth()->check())
{{ __('Profile') }} {{ __('Messages') }} {{ __('Wishlists') }} {{ __('My Ads') }} {{ __('My Wallet') }} {{ __('Logout') }}
{{ strlen(auth()->user()?->name) > 15 ? substr(auth()->user()?->name, 0, 15) . '...' : auth()->user()?->name ?? 'Guest' }}
{{ auth()->user()?->getRoleNames()?->first() ?? 'User' }}
{{ auth()->user()->profilePhotoPath ?? asset('media/demo-img.png') }}
@else {{ __('Sign In') }} @endif