| {{ $item->project }} |
{{ $item->total_units }} |
{{ number_format($item->collection_monthly_installment_last_month_25_due, 2) }} |
{{ number_format($item->collection_monthly_installment_current_month_due, 2) }} |
{{ number_format($item->collection_monthly_installment_last_month_25_due + $item->collection_monthly_installment_current_month_due, 2) }}
|
{{ number_format($item->collection_monthly_installment_current_month_received, 2) }}
|
{{ number_format(
($item->collection_monthly_installment_current_month_received /
($item->collection_monthly_installment_last_month_25_due +
$item->collection_monthly_installment_current_month_due)) *
100,
2,
) }}%
|
{{ number_format($item->bounce_cheque, 2) }} |
{{ $item->pending_units }} |
@php
$totalUnits += $item->total_units;
$totalDue += $item->collection_monthly_installment_last_month_25_due;
$currentMonthDue += $item->collection_monthly_installment_current_month_due;
$totalDueWithCurrent +=
$item->collection_monthly_installment_last_month_25_due +
$item->collection_monthly_installment_current_month_due;
$totalReceived += $item->collection_monthly_installment_current_month_received;
$totalReceivedPercentage +=
($item->collection_monthly_installment_current_month_received /
($item->collection_monthly_installment_last_month_25_due +
$item->collection_monthly_installment_current_month_due)) *
100;
$bounceCheque += $item->bounce_cheque;
$pendingUnits += $item->pending_units;
@endphp
@endif
@endforeach
| TOTAL |
{{ $totalUnits }} |
{{ number_format($totalDue, 2) }} |
{{ number_format($currentMonthDue, 2) }} |
{{ number_format($totalDueWithCurrent, 2) }} |
{{ number_format($totalReceived, 2) }} |
@php
$avgRate = $model->count() > 0 ? $totalReceivedPercentage / $model->count() : 0;
@endphp
{{ number_format($avgRate, 2) }}%
|
{{ number_format($bounceCheque, 2) }} |
{{ $pendingUnits }} |