@extends('layouts.front') @push('css') @endpush @section('content')
{{ __('Total Beds : ') }} {{ $data->total_beds }}
{{ __('PG is for : ') }}
@foreach ($pgForList as $item) {{ ucwords(trim($item)) }} @endforeach{{ __('Best suited for : ') }}
@foreach ($suitedForList as $item) {{ ucwords(trim($item)) }} @endforeach{{ __('Meals Available: ') }} {{ ucwords($data->meals_available) }}
{{ __('Meal Offerings : ') }}
@foreach ($mealOfferingsList as $item) {{ ucwords(trim($item)) }} @endforeach{{ __('Meal Speciality : ') }}
@foreach ($mealSpecialityList as $item) {{ ucwords(trim($item)) }} @endforeach{{ __('Notice Period (Days) : ') }} {{ $data->notice_period }}
{{ __('Lock in Period (Days) : ') }} {{ $data->lock_in_period }}
{{ __('Common Areas : ') }}
@foreach (explode(',', $commonAreasFormatted) as $area) {{ trim($area) }} @endforeach{{ __('Property Managed By : ') }} {{ ucwords(str_replace('_', ' ', trim($data->caretaker))) }}
{{ __('Property Manager stays at Property : ') }} {{ ucwords($data->is_manager_stays ?? '') }}
{{ __('Non-Veg Allowed : ') }} {{ ucwords($data->veg_allowed ?? '') }}
{{ __('Opposit Sex Allowed : ') }} {{ ucwords($data->opposit_sex_allowed ?? '') }}
{{ __('Any Time Allowed : ') }} {{ ucwords($data->any_time_allowed ?? '') }}
{{ __('Last Time Entry : ') }} {{ $data->last_entry_time }}
{{ __('Visitors Allowed : ') }} {{ ucwords($data->visitors_allowed ?? '') }}
{{ __('Guardians Allowed : ') }} {{ ucwords($data->guardians_allowed ?? '') }}
{{ __('Drinking Allowed : ') }} {{ ucwords($data->drinking_allowed ?? '') }}
{{ __('Smoking Allowed : ') }} {{ ucwords($data->smoking_allowed ?? '') }}
@foreach ($facilities as $facility)
{{ ucwords(str_replace('_', ' ', trim($facility))) }}
@endforeach{{ DB::table('attribute_options')->where('id', $id)->first()->name ?? '' }}
{{ __('One Time Move in Charges (Rs) :') }} {{ $data->move_charges ? $data->move_charges : 'N/A' }}
{{ __('Meal Charges Per Month (Rs) :') }} {{ $data->meal_charges ? $data->meal_charges : 'N/A' }}
{{ __('Electricity Charges Per Month (Rs) :') }} {{ $data->electricity_charges ? $data->electricity_charges : 'N/A' }}
{{ __('Additional Information (Rs) :') }} {{ $data->additional_info ? $data->additional_info : 'N/A' }}
@foreach ($reviews as $key => $review)-
{{ $review->created_at->format('d M Y') }}
@endforeach
{{ $review->user->name }}
{{ $review->message }}