@php $products = \App\Models\Product::with(['category']) ->where('is_featured', true) ->where('is_available', true) ->take(6) ->orderBy('sort_order') ->get(); @endphp