@php $featured_products = Cache::remember('featured_products', 3600, function () { return filter_products(\App\Models\Product::where('published', 1)->where('featured', '1'))->latest()->limit(8)->get(); }); @endphp @if (count($featured_products) > 0)

{{ translate('Featured Products') }}

@endif