@extends('frontend.layouts.master') @section('content') @php $cart = null; if(session()->has('cart_identifier')){ $cart = \App\Models\Cart::where('cart_identifier', session()->get('cart_identifier'))->first(); } $cartItems = $cart ? $cart->cartItems()->with('product')->get() : []; @endphp @include('frontend.home.slider') @include('frontend.home.featured-brands',[ 'featured_brands' => $featured_brands, ]) @include('frontend.home.banner-below-brands') @include('frontend.home.featured-category-2',$categories) {{-- @include('frontend.home.banner', $featured_brands) --}} @include('frontend.home.banner-below-categories') @include('frontend.home.popular-products',$products) @include('frontend.home.banner-below-products') @include('frontend.partials.info-section') @include('frontend.partials.product-script') @include('frontend.home.banner-footer-areas') @endsection