@php $propertyContent = getContent('latest_property.content', true); $latestProperties = App\Models\Property::active() ->withSum('invests', 'total_invest_amount') ->withCount('invests') ->with(['location', 'profitScheduleTime', 'installmentDuration', 'invests']) ->orderByDesc('id') ->take(3)->get(); @endphp

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

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

@lang('Explore')
@include($activeTemplate . 'partials.property', ['properties' => @$latestProperties, 'col' => '4'])