@php $topSelling = getContent('top_selling.content', true); $products = App\Models\Product::with(['category', 'regularLicense']) ->where('status', 1) ->orderByDesc('sale') ->take(8) ->get(); @endphp
{{__($topSelling->data_values->heading)}}
@include($activeTemplate . 'components.product')