@extends('layouts.app') @section('title', 'Rent Collection') @section('page-title', 'Rent Collection') @section('content')
| Property | Owner | Tenant | Agreement Period | Monthly Rent | Deal Status | {{ $thisMonth->format('M Y') }} | Paid (FY) | Unpaid (FY) | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
@if($property)
@if($property->trashed())
{{ $property->title }}
@else
{{ $property->title }}
@endif
@if($isDeactivated)
Deactivated
@endif
@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') : '—' }} | {{ $agr->monthly_rent ? '₹' . number_format((float) $agr->monthly_rent, 0) : '—' }} | {{-- Deal Status (Active / Deactivated) --}}@if($isDeactivated) Deactivated @else Active @endif | {{-- Current-month collection status --}}@if($isDeactivated) — @else {{ $badgeLabel }} @endif | {{ $row['paidCount'] }} | {{ $row['unpaidCount'] }} | @if($property) Checklist @endif @if($agr->document_path && $agr->lead) @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. |
|||||||||