@extends('layouts.front') @push('css') @endpush @section('content')

{{ $data->name ?? '' }}

{{ showAmount($data->price ?? ($data->expacted_price ?? '')) }} / {{ $data->payment_duration }} @if ($data->looking_for == 'for_sell') @lang('For Sell') @else @lang('For Rent') @endif

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

@lang('Property Info')

@if($data->sale_type && $data->looking_for == 'for_sell')

{{ __('Sale Type : ') }} {{ ucwords(str_replace('-', ' ', $data->sale_type)) }}

@endif @if ($data->construction_status == 'ready-to-move')

{{ __('Property Age : ') }} {{ $property_age . ' ' . ($property_age == 1 ? 'Year' : 'Years') }}

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

{{ __('Possession Date : ') }} {{ date('d-m-Y', strtotime($data->possession_date)) }}

@endif @if ($data->no_of_bhk)

{{ __('No. of BHK : ') }} {{ strtoupper(str_replace('-', ' ', $no_of_bhk)) }}

@endif @if ($data->no_of_bathroom)

{{ __('No. of Bathrooms : ') }} {{ ucwords(str_replace('-', ' ', $no_of_bathroom)) }} Bath

@endif @if ($data->no_of_balcony)

{{ __('No. of Balcony : ') }} {{ ucwords(str_replace('-', ' ', $no_of_balcony)) }}

@endif @if ($data->covered_parking)

{{ __('Covered Parking : ') }} {{ ucwords(str_replace('_', ' ', $covered_parking)) }}

@endif @if ($data->open_parking)

{{ __('Open Parking : ') }} {{ ucwords(str_replace('_', ' ', $open_parking)) }}

@endif @if ($data->furnish_type)

{{ __('Furnish Type : ') }} {{ ucwords(str_replace('-', ' ', $furnish_type)) }}

@endif

@lang('Property Overview')

@if ($data->built_up_area)

{{ __('Built Up Area : ') }} {{ $built_up_area }} {{ $area_unit }}

@endif @if ($data->carpet_area)

{{ __('Carpet Area : ') }} {{ $carpet_area }} {{ $area_unit }}

@endif @if ($data->total_floors)

{{ __('Total Floors : ') }} {{ $total_floors }}

@endif @if ($data->property_on_floor)

{{ __('Property On Floor : ') }} {{ ucwords($data->property_on_floor) }}

@endif @if ($data->located_inside)

{{ __('Located Inside : ') }} {{ ucwords(str_replace('-', ' ', $data->located_inside)) }}

@endif @if ($data->zone_type)

{{ __('Zone Type : ') }} {{ ucwords(str_replace('-', ' ', $data->zone_type)) }}

@endif @if ($data->ownership)

{{ __('Ownership : ') }} {{ ucwords(str_replace('-', ' ', $ownership)) }}

@endif @if ($data->price_per_sqft && $data->looking_for == 'for_sell')

Price/{{ $data->area_unit == 'sqft' ? 'Sq.Ft.' : 'Sq.Mtr' }} : {{ $price_per_sqft }}/{{ $data->area_unit == 'sqft' ? 'Sq.Ft.' : 'Sq.Mtr' }}

@endif
@if ($data->attributes) @foreach ($attribute_name = json_decode($data->attributes, true) as $key => $attributes)

{{ $key }}

@foreach ($attributes as $key => $id)

{{ DB::table('attribute_options')->where('id', $id)->first()->name ?? '' }}

@endforeach
@endforeach @endif @if (!empty($data->facilityDistances) && $data->facilityDistances->count() > 0)

Nearby Facilities

@foreach ($data->facilityDistances as $distance)

{{ $distance->facility->name ?? 'N/A' }} - {{ $distance->distance }} {{ $distance->distance_unit }}

@endforeach
@endif @if (count($data->floorplans) > 0)

@lang('Floor Plan')

@foreach ($data->floorplans as $key => $plan)

Floor Plan
@endforeach
@endif

{{ count($reviews) }} @lang('Reviews')

    @foreach ($reviews as $key => $review)
  • {{ $review->user->name }}

    {{ $review->created_at->format('d M Y') }}

    {{ $review->message }}

  • @endforeach

@lang('Write A Review')

@csrf
@csrf
Contact Seller
Property Image {{ ucwords($data->user->name) }}
 {{ $data->user->user_type == 'Agent' ? 'Seller' : ucwords($data->user->user_type) }}
+91-{{ substr($data->user->phone, 0, 4) }}-XXX-XXX
@if (auth()->check())

Hi {{ auth()->user()->name }}!

@endif @if ($data->isContacted) @endif {{-- @endif --}}

Please share your contact

@if ($data->admin) @else @endif

@includeIf('partials.front.cta') @endsection @push('js') @endpush