@extends('layouts.app') @section('title', 'Find Your Dream Home') @section('content')

Find Your Dream Home

Browse properties or post your own.

{{-- 🔍 Filter Form --}}
{{-- 📍 Geolocation Button --}}
{{-- 🌍 Location Info Message --}} @if(session('user_location'))

Showing properties near your location.

@endif {{-- 📲 Install App Button --}}
{{-- 🏠 Property Grid --}}
@forelse ($properties as $property) @php $imageArray = is_array($property->images) ? $property->images : json_decode($property->images, true) ?? []; $firstImage = $imageArray[0] ?? $property->image_url; $displayImage = $firstImage ?? asset('storage/default_blurred.jpg'); $agent = $property->agent; $isVerified = $agent && $agent->is_verified; $canWhatsapp = optional($agent->plan)->can_whatsapp; $phone = preg_replace('/[^0-9]/', '', $agent->phone_number ?? ''); @endphp @empty

No properties listed yet. Try adjusting your filters.

@endforelse
@endsection