@php $featureListing = getContent('feature_listing.content', true); $listings = App\Models\Listing::approved() ->withCount('reviews') ->withSum('reviews', 'rating') ->featured() ->whereHas('user.activePlan') ->with('category', 'city', 'user') ->orderBy('id', 'DESC') ->get(); @endphp @if (!blank($listings))

{{ __($featureListing->data_values->heading) }}

{{ __($featureListing->data_values->subheading) }}

@include($activeTemplate . 'partials.listing', ['class' => 'col-lg-4 col-md-6'])
@endif