@php $products = DB::table('products')->where('is_active', true)->where('is_online', true)->where('category_id',$widget->product_category_id)->offset(0)->limit($widget->product_category_limit)->get(); @endphp

{{$widget->product_category_title}}

@if($widget->product_category_type == 'slider')
chevron_right
chevron_left
@endif
@if($widget->product_category_type == 'slider')
@forelse ($products as $product)
@include('ecommerce::frontend.includes.product-template')
@empty @endforelse
@else
@foreach($products as $product) @include('ecommerce::frontend.includes.product-template') @endforeach
@endif