@extends('layouts.front') @push('css') @endpush @section('content')
{{ __('Available From : ') }} {{ $possession_date }}
{{ __('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 : ') }} {{ $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 }}