@extends('layouts.front') @push('css') @endpush @section('content') @if (in_array('Banner', $home_modules))

{{ $ps->banner_title }}

@endif @if (in_array('Explore Property', $home_modules))

{{ $ps->explore_ptitle }}

{{ $ps->explore_psub }}

@foreach ($properties as $key => $data)
latest property
{{ $data->created_at->diffForHumans() }}
{{ $data->type == 'for_rent' ? __('For Rent') : __('For Sale') }}

{{ $data->name }}

{{ showAmount($data->price ?? ($data->expacted_price ?? 'N/N')) }}

{{ $data->locality }}, {{ $data->location ? $data->location->name : '' }}

@if (in_array($data->category_id, [34,35,36])) @if ($data->no_of_bhk)

No Of BHK
{{ $data->no_of_bhk }}

@endif @if ($data->carpet_area)

Carpet Area
{{ $data->carpet_area }} Sqft

@endif @if ($data->price_per_sqft)

Price/Sqft
₹{{ $data->price_per_sqft }}

@endif @if ($data->construction_status)

Construction Status
{{ ucwords(str_replace('-', ' ', $data->construction_status)) }}

@endif @if ($data->construction_status == 'under-construction' && $data->possession_date)

Possession Date
{{ $data->possession_date }}

@elseif ($data->construction_status == 'ready-to-move' && $data->property_age)

Property Age
{{ $data->property_age }} Years

@endif @if ($data->sale_type)

Booking Type
{{ ucfirst(str_replace('-', ' ', $data->sale_type)) }}

@endif @endif @if (in_array($data->category_id, [32,33])) @if ($data->plot_area)

Plot Area
{{ $data->plot_area.' '.$data->area_unit}}

@endif @if ($data->plot_length)

Plot Dimensions
{{ ucfirst(str_replace('-', ' ', $data->plot_length.'X'.$data->plot_width)) }}

@endif @if ($data->floors_allowed)

Floors Allowed
{{ $data->floors_allowed}}

@endif @if ($data->open_sides)

No. Of Open Sides
{{ $data->open_sides}}

@endif @if ($data->construction_type)

Type of Construction
{{ ucfirst($data->construction_type)}}

@endif @if ($data->possession_status)

Possession Status
{{ ucfirst($data->possession_status)}}

@endif @if ($data->Ownership)

Possession Status
{{ $data->Ownership}}

@endif @endif
@endforeach
@endif @if (in_array('Location', $home_modules))

{{ $ps->location_title }}

{{ $ps->location_subtitle }}

@foreach ($locations_for_section as $key => $data) @endforeach
@endif @if (in_array('Testimonials', $home_modules))

{{ $ps->review_title }}

@foreach ($testimonials as $key => $data)

@php echo $data->details; @endphp

{{ $data->title }}

{{ $data->subtitle }}
@endforeach
@endif @if (in_array('Blogs', $home_modules))

{{ $ps->blog_title }}

@php echo $ps->blog_subtitle; @endphp

@endif @if (in_array('CTAs', $home_modules)) @includeIf('partials.front.cta') @endif @endsection @push('js') @endpush