@extends('layouts.nav') @section('title', 'Rent Summary Report') @section('content')
Date | Tenant Code | Name | Balance |
---|---|---|---|
{{ \Carbon\Carbon::parse($data->entrydate)->format('d/m/Y') }} | {{ $data->tenantcode }} | {{ $data->tenant_name }} | USD{{ number_format($data->total, 2) }} |
Grand Total | USD{{ number_format($grandTotal, 2) }} |
No rent collection data found for the selected currency and date range.
Date | Invoice | Tax | Discount | Rent Amount(USD) | Amount Paid(USD) | Balance (USD) |
---|---|---|---|---|---|---|
{{ \Carbon\Carbon::parse($txn->entrydate)->format('d/m/Y') }} | {{ $txn->batch }} | {{ $txn->tax }} | {{ $txn->discount }} | {{ $txn->price }} | {{ $txn->dr }} | {{ number_format($balance, 2) }} |
Closing balance for {{ $tenantName }} : USD{{ number_format($tenantTotal, 2) }} |
No rent collection data found for the selected currency and date range.