@extends('layouts.app') @section('title', $property->title) @section('content')

{{ $property->title }} @if($property->video_path) @endif

@if($property->image_url) Property image @endif

Type: {{ ucfirst($property->type) }}

City: {{ $property->city }}

Address: {{ $property->address }}

Price: ₦{{ number_format($property->price, 0) }}

Description

{{ $property->description }}

@if($property->agent)

Agent Information

👤 {{ $property->agent->name }}

📞 {{ $property->agent->phone_number }}

@if($property->agent->isVerified()) ✅ Verified Agent @else ⛔ Unverified Agent @endif

@endif @if($property->video_path) @endif
@endsection