@extends('layouts.front') @push('css') @endpush @section('content')
{{ __('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)) }}
{{ __('Sale Type : ') }} {{ ucwords(str_replace('-', ' ', $sale_type)) }}
{{ __('Construction Status : ') }} {{ ucwords(str_replace('-', ' ', $construction_status)) }}
{{ __('Property Age : ') }} {{ $property_age . ' ' . ($property_age == 1 ? 'Year' : 'Years') }}
{{ __('Possession Date : ') }} {{ $possession_date }}
{{ __('Furnish Type : ') }} {{ ucwords(str_replace('_', ' ', $furnish_type)) }}
{{ __('Covered Parking : ') }} {{ ucwords(str_replace('_', ' ', $covered_parking)) }}
{{ __('Open Parking : ') }} {{ ucwords(str_replace('_', ' ', $open_parking)) }}
{{ __('Built Up Area : ') }} {{ $built_up_area }} {{ $area_unit }}
{{ __('Carpet Area : ') }} {{ $carpet_area }} {{ $area_unit }}
{{ __('Total Floors : ') }} {{ $total_floors }}
{{ __('Property On Floor : ') }} {{ $property_on_floor }}
{{ __('Located Inside : ') }} {{ $located_inside }}
{{ __('Zone Type : ') }} {{ $zone_type }}
{{ __('Price : ') }} {{ $price_per_sqft }}/{{ $area_unit }}
@php echo $data->description; @endphp
{{ DB::table('attribute_options')->where('id', $id)->first()->name }}
{{ __('Plot Area : ') }} {{ $data->plot_area . ' ' . $data->area_unit }}
{{ __('Plot Dimensions : ') }} {{ ucwords($data->plot_length . ' X ' . $data->plot_width) }}
{{ __('Floors Allowed : ') }} {{ $data->floors_allowed }}
{{ __('Boundary Wall Around : ') }} {{ ucwords($data->boundary_wall) }}
{{ __('No. of Open Sides : ') }} {{ $data->open_sides }}
{{ __('Construction Done : ') }} {{ ucwords($data->construction_done) }}
{{ __('Construction Type : ') }} {{ ucwords($data->construction_type) }}
{{ __('Possession Status : ') }} {{ ucwords($data->possession_status) }}
{{ __('Zone Type : ') }} {{ ucwords($data->zone_type) }}
{{ __('Ownership : ') }} {{ ucwords(str_replace('-', ' ', $data->ownership)) }}
{{ $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 }}