@extends('layouts.modern') @section('title', 'Sold House Prices Search - PropertyFinda') @section('content')

Check Sold House Prices

Search recent property sales in your area instantly.

@if(isset($error))
{{ $error }}
@endif @if($searchPerformed && empty($results) && !isset($error))

No results found

We couldn't find any sold property records matching "{{ $location }}" within {{ $radius }} miles. Try extending the radius or checking the postcode.

@endif @if(!empty($results))
@foreach($results as $property)
@if(!empty($property['site_images']) && isset($property['site_images'][0]['url'])) {{ $property['address'] }} @elseif(!empty($property['images']) && isset($property['images'][0]['url'])) {{ $property['address'] }} @elseif(!empty($property['latitude']) && !empty($property['longitude']))
Location Map
@elseif(!empty($property['address']) || !empty($property['postcode']))
Location Map
@else
No Image or Map
@endif @if($property['price'])
Sold: £{{ number_format($property['price']) }}
@endif @if($property['is_internal'])
Listed on PropertyFinda
@endif

{{ $property['address'] }}

{{ $property['postcode'] }}

Type

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

Tenure

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

Transaction Date

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

Bedrooms

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

Area

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

@if($property['is_internal'] && $property['url'] != '#') View Full Listing @else View Details @endif
@endforeach
@endif
@endsection