@extends('admin.layouts.app') @section('title', 'All Properties') @section('breadcrumb')
{{ number_format($total) }}
Total Listings
{{ number_format($forSale) }}
For Sale
{{ number_format($forRent) }}
For Rent
{{ number_format($pending) }}
Draft
| # | Property | Type | Category | Price | Agent | Status | Date | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $property->id }} |
{{ $property->title }} {{ $property->city ? $property->city : ($property->address ? Str::limit($property->address, 30) : '—') }} |
{{ $property->type?->name ?? '—' }} | {{ $property->category?->name ?? '—' }} | @if ($property->price) ₹{{ number_format($property->price) }} @else — @endif | {{ $property->agent?->name ?? '—' }} | {{ $property->status }} | {{ $property->created_at->format('d M Y') }} | |
| No properties found. Add one. | ||||||||
Showing {{ $properties->firstItem() ?? 0 }} to {{ $properties->lastItem() ?? 0 }} of {{ $properties->total() }} results