@php $featuredPropertyContent = getContent('featured_property.content', true); $featuredProperties = App\Models\Property::active() ->where('is_featured', Status::YES) ->withSum('invests', 'total_invest_amount') ->withCount('invests') ->with(['location', 'profitScheduleTime', 'installmentDuration', 'invests']) ->orderByDesc('id') ->take(3) ->get(); @endphp

{{ __(@$featuredPropertyContent->data_values->title) }}

{{ __(@$featuredPropertyContent->data_values->heading) }}

@lang('Explore')
@include($activeTemplate . 'partials.featured_property', ['featuredProperties' => @$featuredProperties])