@extends('layouts.app') @section('title', 'Rent Collection') @section('page-title', 'Rent Collection') @section('content')
| Property | Owner | Tenant | Agreement Period | {{ $thisMonth->format('M Y') }} | Paid (FY) | Unpaid (FY) | Actions |
|---|---|---|---|---|---|---|---|
|
@if($property)
{{ $property->title }}
@if($property->city)
{{ $property->city }}
@endif
@else
—
@endif
|
@if($property && $property->owner) {{ $property->owner->name }} @else {{ $agr->owner_name ?: '—' }} @endif | @if($client) {{ $client->full_name }} @else {{ $agr->client_name ?: '—' }} @endif | {{ $agr->agreement_start_date ? $agr->agreement_start_date->format('d M Y') : '—' }} — {{ $agr->agreement_end_date ? $agr->agreement_end_date->format('d M Y') : '—' }} | {{ $badgeLabel }} | {{ $row['paidCount'] }} | {{ $row['unpaidCount'] }} | @if($property) Checklist @endif |
|
No managed properties with active tenants found. Mark a rental property as Managed by {{ \App\Models\AppSetting::get('company_name', 'Agrawal Properties') }} on its detail page. |
|||||||