@extends('ecommerce::frontend.layout.main') @section('title') {{ $ecommerce_setting->site_title ?? '' }} @endsection @section('description') {{ '' }} @endsection @section('content') @if(isset($sliders)) @endif @if(isset($widgets)) @foreach($widgets as $widget) @if($widget->name == 'category-slider-widget') @include('ecommerce::frontend.includes.category-slider-widget') @endif @if($widget->name == 'brand-slider-widget') @include('ecommerce::frontend.includes.brand-slider-widget') @endif @if($widget->name == 'product-category-widget') @include('ecommerce::frontend.includes.product-category-widget') @endif @if($widget->name == 'product-collection-widget') @include('ecommerce::frontend.includes.product-collection-widget') @endif @if($widget->name == 'text-widget') @include('ecommerce::frontend.includes.text-widget') @endif @if($widget->name == 'three-c-banner-widget') @include('ecommerce::frontend.includes.three-c-banner-widget') @endif @if($widget->name == 'two-c-banner-widget') @include('ecommerce::frontend.includes.two-c-banner-widget') @endif @if($widget->name == 'one-c-banner-widget') @include('ecommerce::frontend.includes.one-c-banner-widget') @endif @if($widget->name == 'tab-product-category-widget') @include('ecommerce::frontend.includes.tab-product-category-widget') @endif @if($widget->name == 'tab-product-collection-widget') @include('ecommerce::frontend.includes.tab-product-collection-widget') @endif @if($widget->name == 'image-slider-widget') @include('ecommerce::frontend.includes.image-slider-widget') @endif @endforeach @endif @if(isset($recently_viewed) && count($recently_viewed) > 0) @include('ecommerce::frontend.includes.recently-viewed-products') @endif @endsection @section('script') @endsection