{{ $listing->address }}
|
Ref. Number
#{{ $listing->property_reference_number }}
|
Property Type
{{ $listing->propertyType->title ?? 'Residential' }}
|
Market Status
{{ strtoupper($listing->purpose) }}
|
|
Beds
{{ $listing->bedrooms ?? '—' }}
|
Baths
{{ $listing->bathrooms ?? '—' }}
|
Recep.
{{ $listing->reception_rooms ?? '—' }}
|
Size
@if($listing->area_size && is_numeric($listing->area_size))
{{ number_format((float) $listing->area_size) }}ft²
@else
{{ $listing->area_size ?? '—' }}
@endif
|
Floor
{{ $listing->floor_level ?? '—' }}
|
|
About this Property
{!! $listing->description !!}
@if($listing->features->count() > 0 || $listing->amenities->count() > 0 || (isset($listing->key_features) && count((array)$listing->key_features) > 0))
Property Highlights
@foreach($listing->features as $feature)
{{ $feature->title }}
@endforeach
@foreach($listing->amenities as $amenity)
{{ $amenity->title }}
@endforeach
@if(isset($listing->key_features) && is_array($listing->key_features))
@foreach($listing->key_features as $k_feature)
@if(!empty($k_feature))
{{ $k_feature }}
@endif
@endforeach
@endif
@endif
|
Technical Specifications
Utilities & Infrastructure
|
|
@php $gImg = getBase64Image($img); @endphp
@if($gImg) |
@endforeach