@extends('frontend.layouts.app') @section('content')
{{$property_detail->booking_amount}}
{{--
See other charges
Rent
16,000
Monthly Maintenance
700
Monthly Charges
16,700
First Month Charges
Monthly Charges
16,700
Security Deposit
10,000
Total First Month Amount
26,700
Electricity and water charges excluded
--}} {{--
Verified on Site
--}}
{{$property_detail->name}} {{optional($property_detail->project)->city}}, {{optional($property_detail->project)->state}}
    @foreach (json_decode($property_detail->featuers) as $feature)
  • {{App\Models\Admin\Feature::where('id',$feature)->first()->name}}
  • @endforeach {{--
  • 2Baths
  • 2Balconies
  • 1 Covered Parking
  • --}}
  • Plot Area
    {{$property_detail->plot_area}}   sqft
    {{$property_detail->price}}/sqft
  • Facing
    {{ucwords($property_detail->facing)}}
  • Plot Type
    {{ucwords($property_detail->plot_type)}}
  • Status
    {{ucwords(str_replace('_',' ',$property_detail->prossession_status))}}
  • Self / Tieup
    {{ucwords($property_detail->self_tieup)}}
  • Booking Status
    {{ucwords(str_replace('_',' ',$property_detail->booking_status))}}
  • Posted: {{$property_detail->created_at->diffForHumans()}}
@endsection