@extends('layouts.app') @section('title', 'Admin Dashboard') @section('page-title', 'Dashboard') @section('content') {{-- ── Summary Cards ──────────────────────────────────────────────────────────────── --}}
| Client | Property | End Date | Days Left | Monthly Rent | Assigned Staff | Status |
|---|---|---|---|---|---|---|
| @if($raClient) {{ $raClient->full_name }} @else {{ $ra->client_name ?: '—' }} @endif |
@if($ra->property)
{{ $ra->property->title }}
@if($ra->property->city)
{{ $ra->property->city }}
@endif
@else
—
@endif
|
{{ $ra->agreement_end_date ? $ra->agreement_end_date->format('d M Y') : '—' }} | @if($daysLeft !== null) {{ $daysLeft }}d @else — @endif | ₹{{ number_format((float) $ra->monthly_rent, 0) }} | {{ $raStaff ? $raStaff->name : '—' }} | {{ $badgeLabel }} |