@if(count($products) > 0) @php($decimal_point_settings = getWebConfig(name: 'decimal_point_settings')) @foreach($products as $product) @if(!empty($product['product_id'])) @php($product=$product->product) @endif
@if(!empty($product)) @include('web-views.partials._feature-product',['product'=>$product, 'decimal_point_settings'=>$decimal_point_settings]) {{-- @include('web-views.partials._filter-single-product',['product'=>$product, 'decimal_point_settings'=>$decimal_point_settings])--}} @endif
@endforeach
@else
{{ translate('no_product_found') }}
@endif