@extends('admin.layouts.app') @section('title', 'Agency Listings') @section('breadcrumb')
  • Agencies
  • Agency Listings
  • @endsection @section('heading', 'Agency Listings') @section('subheading', 'View property listings across all agencies.') @section('content')
    @forelse($properties as $property) @empty @endforelse
    Agency Property Title Type Price Agent Status Listed Actions
    {{ $property->agent?->agentProfile?->agency?->name ?? '—' }} {{ $property->title }} {{ $property->type?->name ?? '—' }} @if($property->price) ₹{{ number_format($property->price) }} @else — @endif {{ $property->agent?->name ?? '—' }} {{ $property->status ?? '—' }} {{ $property->created_at?->format('d M Y') }} Edit
    No listings found. Assign agents to agencies and set agents on properties.

    Showing {{ $properties->firstItem() ?? 0 }}-{{ $properties->lastItem() ?? 0 }} of {{ $properties->total() }}

    {{ $properties->links() }}
    @endsection