@extends('layouts.app') @section('content')

Available Properties

Discover exclusive off-market property investment deals curated by the UK's leading sourcing agents.


@include('available_properties.partials.filter_form')

{{ $properties->total() }} Properties Found

@if(session('success'))
{{ session('success') }}
@endif
@if($properties->count() > 0)
@foreach($properties as $property)
@if($property->thumbnail) {{ $property->headline }} @else No Image @endif
{{ $property->marketingPurpose->name ?? 'For Sale' }} @if($property->investment_type) {{ str_replace('_', ' ', $property->investment_type) }} @endif
@csrf
£{{ number_format($property->portal_sale_price, 0) }} {{ ucfirst($property->tenure_type ?? 'N/A') }}
{{ $property->headline }}
{{ $property->location }}
{{ $property->bedrooms }} Beds
{{ $property->bathrooms }} Baths
{{ $property->area_sq_ft }} sqft
View Details
@endforeach
{{ $properties->links() }}
@else

No Properties Found

Try adjusting your filters to find more properties.

Reset Filters
@endif
@include('available_properties.partials.modals') @push('scripts') @endpush @endsection