{{--
  • Home
  • --}}
  • {{__("Home")}}
  • {{__("Our Products")}}
    • {{__("Contact us")}}
    • @guest('customer')
    • {{__("Login")}}
    • @if (route('register'))
    • {{__("Register")}}
    • @endif @endguest
    • {{__("Cart page")}}
  • {{__("Categories")}}
      @forelse($shop_categories_menu as $global_category)
    • {{ $global_category->name }}
    • @empty @endforelse
  • {{-- {{__("Who we are")}}?--}} {{-- {{__("Pages")}}--}} {{--
      --}} {{-- @include('partials.frontend.pages')--}} {{--
    --}}
  • {{__("Contact")}}
    @guest('customer')
  • {{__("Login")}}
  • {{__("Reg")}}
  • @else
  • {{__("My Account")}}
      @auth('customer')
    • {{__("Dashboard")}}
    • @endauth
    • {{ __('Logout') }}
      @csrf
    • {{__("Balance")}} : {{format_amount(auth("customer")->user()->balance,true)}}
  • @endguest
  • HOME
  • PRODUCTS
  • Categories
    • @foreach($shop_categories_menu as $global_category)
    • {{ $global_category->name }}
    • @endforeach
  • contact
  • @guest('customer')
  • Login
  • Reg
  • @else
  • Dashboard
  • {{ __('Logout') }}
  • @endguest @include('partials.frontend.pages')