@extends('layouts.modern') @section('title', ($property['address'] ?? 'Property Details') . ' - PropertyFinda') @section('content')

{{ $property['address'] ?? ($property['label'] ?? 'N/A') }}

{{ $property['postcode'] ?? 'N/A' }}

{{ $property['property_type'] ?? 'Residential' }}
@if(!empty($property['site_images']) && count($property['site_images']) > 0) Property Image @elseif(!empty($property['images']) && count($property['images']) > 0) Property Image @elseif(!empty($property['latitude']) && !empty($property['longitude']))
@elseif(!empty($property['address']) || !empty($property['postcode']))
@else
No Image or Map Available
@endif

Bedrooms

{{ $property['bedrooms'] ?? 'N/A' }}

Bathrooms

{{ $property['bathrooms'] ?? ($property['baths'] ?? ($property['habitable_rooms'] ?? 'N/A')) }}

Floor Area

{{ isset($property['floor_area_sqft']) ? number_format($property['floor_area_sqft']) . ' sq ft' : 'N/A' }}

Tenure

{{ $property['tenure'] ?? 'N/A' }}

Property Description

{!! nl2br(e($property['description_text'] ?? ($property['description'] ?? 'No additional description available for this property.'))) !!}

Last Sold Price

@if(!empty($property['sold_history'])) @php $lastSale = $property['sold_history'][0]; @endphp
£{{ number_format($lastSale['amount']) }}

Sold on {{ \Carbon\Carbon::parse($lastSale['date'])->format('d M, Y') }}

@else
Price details not available
@endif
@if(!empty($property['sold_history']) && count($property['sold_history']) > 1)

Full Price History

@foreach(array_slice($property['sold_history'], 1) as $sale)

£{{ number_format($sale['amount']) }}

{{ \Carbon\Carbon::parse($sale['date'])->format('M Y') }}

SOLD
@endforeach
@endif

Disclaimer: This information is provided via the PaTMa Property Prospector API and is for informational purposes only. Information is fetched in real-time and not stored on PropertyFinda.

@endsection