{{ __('Some products that may be of interest to you:') }}
@foreach($feature_products as $prod)
@if($gs->show_products_without_stock == 0)
@if($prod->stock === null || (int)$prod->stock > 0)
@include('front.themes.theme-06.components.slider-product')
@endif
@else
@include('front.themes.theme-06.components.slider-product')
@endif
@endforeach