{{ $settings['site-name'] ?? 'E-commerce' }}
{{ $settings['short_des'] ?? 'Modern E-commerce Website' }}
  • Home
  • Products
    • All Products
    • Product Lists
  • Categories
      @if(isset($categories) && $categories->count() > 0) @foreach($categories->take(10) as $category)
    • {{ $category->title }}
    • @endforeach @else
    • No categories available
    • @endif
  • Brands
      @if(isset($brands) && $brands->count() > 0) @foreach($brands->take(10) as $brand)
    • {{ $brand->title }}
    • @endforeach @else
    • No brands available
    • @endif
  • Blog
  • About
  • Contact
  • 0
    • Your cart is empty

      View Cart Checkout
  • @auth
  • {{ Auth::user()->name }}
    • Dashboard
    • Profile
    • Orders
    • Wishlist
    • Logout
      @csrf
  • @else
  • Account
    • Login
    • Register
  • @endauth