@extends('layouts.app') @section('content')
| Tenant | Unit | Start Date | End Date | Rent | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $tenancy->customer->CustomerName ?? 'N/A' }} | {{ $tenancy->unit->UnitIdentity ?? 'N/A' }} | {{ $tenancy->start_date->format('M d, Y') }} | {{ $tenancy->end_date ? $tenancy->end_date->format('M d, Y') : 'Open-ended' }} | {{ number_format($tenancy->monthly_rent, 2) }} | {{ $tenancy->status->name ?? 'N/A' }} | |
| No tenancies found. | ||||||