@extends('layouts.app') @section('title', 'Property Listings') @section('content')
You’ve used {{ auth()->user()->properties()->count() }} of {{ auth()->user()->plan->listing_limit ?? '∞' }} listings.
@endif @if($properties->isEmpty())No properties available at the moment. Please check back later.
@else{{ ucfirst($property->type) }} • {{ $property->city ?? 'Unknown City' }}
₦{{ number_format($property->price, 0) }}
{{-- Agent Info --}} @if($agent)👤 Agent: {{ $agent->name ?? 'Unknown' }} @if($agent && $agent->isVerified()) ✔ Verified Agent @else ⛔ Unverified @endif
@if($agent->phone_number)📞 {{ $agent->phone_number }}
@endif @elseAgent info unavailable.
@endif {{-- ✅ WhatsApp Contact --}} @if($canWhatsapp && $phone) 💬 Contact via WhatsApp @elseWhatsApp not available.
@endif {{-- View Details --}} View Details →