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