@extends('layouts.modern') @section('content')
Background

Find Your Perfect Home

The UK's fastest growing property search portal for sale and to rent.

@php $homeSelectedCategoryId = request('category_id'); $homeSelectedPropertyTypeId = request('property_type_ids') ?: request('property_type_id'); $homeAvailablePropertyTypes = $homeSelectedCategoryId ? \App\Models\PropertyType::where('category_id', $homeSelectedCategoryId)->get() : []; $homeAvailableUnitTypes = $homeSelectedPropertyTypeId ? \App\Models\UnitType::where('property_type_id', $homeSelectedPropertyTypeId)->get() : []; @endphp

Browse Properties

@php $dbTypes = \App\Models\PropertyType::take(5)->get(); $categories = []; foreach ($dbTypes as $type) { $icon = 'fa-house'; $title = strtolower($type->title); if (str_contains($title, 'house')) $icon = 'fa-house-chimney'; elseif (str_contains($title, 'flat') || str_contains($title, 'apartment')) $icon = 'fa-building'; elseif (str_contains($title, 'bungalow')) $icon = 'fa-house-user'; elseif (str_contains($title, 'land')) $icon = 'fa-layer-group'; elseif (str_contains($title, 'commercial')) $icon = 'fa-shop'; $categories[] = [ 'name' => $type->title, 'icon' => $icon, 'params' => ['property_type' => $type->id] ]; } // Add Others as the 6th item $categories[] = [ 'name' => 'Others', 'icon' => 'fa-ellipsis', 'params' => [] ]; @endphp @foreach($categories as $cat)
{{ $cat['name'] }}
@endforeach

Featured Properties

Hand-picked homes from across the UK

View all properties
@if($buyListings->count() > 0) @else

No properties available for sale.

@endif
@if($rentListings->count() > 0) @else

No rental properties featured yet.

@endif

Explore By Location

Discover properties in the UK's most sought-after neighborhoods

@foreach($propertyLocations as $location) @endforeach
Partnership

Grow With PropertyFinda

Join our affiliate network and earn competitive commissions.

£{{ $affiliate_rate }}

Per {{ number_format($affiliate_batch_size / 1000, 1) }}k visitors
referred

Instant

Approval &
Access

Tracking

Advanced Live
Analytics

Support

Dedicated Partner Team

Ready to start earning?

No payout thresholds. Monthly payments.

@auth @if(auth()->user()->affiliate) Dashboard @else Join Now @endif @else Join Now @endauth

Everything You Need To Find A Home

Verified Agents

Every listing on PropertyFinda comes from registered, vetted UK estate agents.

Instant Alerts

Be the first to know. Get notified as soon as properties hit the market.

Market Data

Access deep insights into local pricing, schools, and transport.

Insights & News

The latest trends and advice in the UK property market

@endsection @push('scripts') @endpush