@extends('layouts.front') @push('css') @endpush @section('content')
{{ __('Sale Type : ') }} {{ ucwords(str_replace('-', ' ', $data->sale_type)) }}
{{ __('Property Age : ') }} {{ $property_age . ' ' . ($property_age == 1 ? 'Year' : 'Years') }}
{{ __('Possession Date : ') }} {{ date('d-m-Y', strtotime($data->possession_date)) }}
{{ __('No. of BHK : ') }} {{ strtoupper(str_replace('-', ' ', $no_of_bhk)) }}
{{ __('No. of Bathrooms : ') }} {{ ucwords(str_replace('-', ' ', $no_of_bathroom)) }} Bath
{{ __('No. of Balcony : ') }} {{ ucwords(str_replace('-', ' ', $no_of_balcony)) }}
{{ __('Covered Parking : ') }} {{ ucwords(str_replace('_', ' ', $covered_parking)) }}
{{ __('Open Parking : ') }} {{ ucwords(str_replace('_', ' ', $open_parking)) }}
{{ __('Furnish Type : ') }} {{ ucwords(str_replace('-', ' ', $furnish_type)) }}
{{ __('Built Up Area : ') }} {{ $built_up_area }} {{ $area_unit }}
{{ __('Carpet Area : ') }} {{ $carpet_area }} {{ $area_unit }}
{{ __('Total Floors : ') }} {{ $total_floors }}
{{ __('Property On Floor : ') }} {{ ucwords($data->property_on_floor) }}
{{ __('Located Inside : ') }} {{ ucwords(str_replace('-', ' ', $data->located_inside)) }}
{{ __('Zone Type : ') }} {{ ucwords(str_replace('-', ' ', $data->zone_type)) }}
{{ __('Ownership : ') }} {{ ucwords(str_replace('-', ' ', $ownership)) }}
Price/{{ $data->area_unit == 'sqft' ? 'Sq.Ft.' : 'Sq.Mtr' }} : {{ $price_per_sqft }}/{{ $data->area_unit == 'sqft' ? 'Sq.Ft.' : 'Sq.Mtr' }}
{{ DB::table('attribute_options')->where('id', $id)->first()->name ?? '' }}
{{ $distance->facility->name ?? 'N/A' }} - {{ $distance->distance }} {{ $distance->distance_unit }}
@foreach ($reviews as $key => $review)-
{{ $review->created_at->format('d M Y') }}
@endforeach
{{ $review->user->name }}
{{ $review->message }}