@vite(['resources/css/app.css', 'resources/js/app.js']) @if(optional($settings)->favicon) @endif @stack('meta') @stack('schema_markup') @stack('head_scripts') @if($settings && $settings->free_shipping_enabled)
Free shipping on all orders over ₹{{ number_format($settings->free_shipping_amount, 0) }}
@endif
Home
@if(isset($menuCategories)) @foreach($menuCategories as $category)
is_nofollow ? 'rel=nofollow' : '' }}> {{ $category->name }} @if($category->children->count() > 0) @endif
@if($category->children->count() > 0)
@foreach($category->children as $child) is_nofollow ? 'rel=nofollow' : '' }}> {{ $child->name }} @endforeach
@endif
@endforeach @endif
Shop All Blog About Contact @if(Auth::check()) My Dashboard
@csrf
@else @endif
@include('components.custom-offers-container') @yield('content')
Home Shop
@php $cartCount = 0; if (Auth::check()) { $cart = \App\Models\Cart::where('user_id', Auth::id())->first(); if ($cart) $cartCount = $cart->items->sum('quantity'); } else { $sessId = session('cart_session_id'); if ($sessId) { $cart = \App\Models\Cart::where('session_id', $sessId)->first(); if ($cart) $cartCount = $cart->items->sum('quantity'); } } @endphp @if($cartCount > 0) {{ $cartCount }} @endif
Cart
Account
@include('partials.chatbot-widget') @stack('scripts')