{{ $review->message }}
@extends('layouts.front') @push('css') @endpush @section('content')
{{ __('Sale Type : ') }} {{ ucwords(str_replace('-', ' ', $data->sale_type)) }}
{{ __('Property Age : ') }} {{ $data->property_age . ' ' . ($data->property_age == 1 ? 'Year' : 'Years') }}
{{ __('Possession Date : ') }} {{ date('d-m-Y', strtotime($data->possession_date)) }}
{{ __('No. of Bathrooms : ') }} {{ ucwords(str_replace('-', ' ', $plan->no_of_bathroom)) }} Bath
{{ __('No. of Balcony : ') }} {{ ucwords(str_replace('-', ' ', $plan->no_of_balcony)) }}
{{ __('Covered Parking : ') }} {{ ucwords(str_replace('_', ' ', $plan->covered_parking)) }}
{{ __('Open Parking : ') }} {{ ucwords(str_replace('-', ' ', $plan->open_parking)) }}
{{ __('Furnish Type : ') }} {{ ucwords(str_replace('-', ' ', $plan->furnish_type)) }}
{{ __('Built Up Area : ') }} {{ $plan->built_up_area }} {{ $plan->area_unit == 'sqft' ? 'sq.ft' : 'sq.mtr' }}
{{ __('Carpet Area : ') }} {{ $plan->carpet_area }} {{ $plan->area_unit == 'sqft' ? 'sq.ft' : 'sq.mtr' }}
{{ __('Total Floors : ') }} {{ $plan->total_floors }}
{{ __('Property On Floor : ') }} {{ ucwords($plan->property_on_floor) }}
Price Per ({{ $plan->area_unit == 'sqft' ? 'sq.ft' : 'sq.mtr' }}) ₹{{ (int) $plan->price_per_sqft }}
{{ __('Expected Price : ') }} ₹{{ (int) $plan->expected_price }}
{{ DB::table('attribute_options')->where('id', $id)->first()->name ?? '' }}
{{ $distance->facility->name ?? 'N/A' }} - {{ $distance->distance }} {{ $distance->distance_unit }}
{{ __('Sale Type : ') }} {{ ucwords(str_replace('-', ' ', $data->sale_type)) }}
{{ __('Property Age : ') }} {{ $property_age . ' ' . ($property_age == 1 ? 'Year' : 'Years') }}
{{ __('Possession Date : ') }} {{ $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 : ') }} {{ $located_inside }}
{{ __('Zone Type : ') }} {{ $zone_type }}
{{ __('Price : ') }} {{ $price_per_sqft }}/{{ $area_unit }}
{{ 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 }}