@extends('layouts.app') @section('title', 'Monthly Financial Report') @section('content') @php $cur = ($filters['currency'] ?? 'PHP') === 'PHP' ? '₱' : $filters['currency'] . ' '; @endphp
| Month | Bills | Units (cu.m) | Subtotal | Tax | Other | Penalties | Total Billed | Collected | Late Fees | Outstanding | Rate |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $row['label'] }} | {{ number_format($row['bills']) }} | {{ number_format($row['units'], 2) }} | {{ number_format($row['subtotal'], 2) }} | {{ number_format($row['tax'], 2) }} | {{ number_format($row['other_charges'], 2) }} | {{ number_format($row['penalties'], 2) }} | {{ $cur }}{{ number_format($row['billed'], 2) }} | {{ $cur }}{{ number_format($row['collected'], 2) }} | {{ number_format($row['late_fees'], 2) }} | {{ number_format($row['outstanding'], 2) }} | {{ number_format($row['rate'], 1) }}% |
| No billing activity in this period. | |||||||||||
| Total | {{ number_format($totals['bills']) }} | {{ number_format($totals['units'], 2) }} | {{ number_format($totals['subtotal'], 2) }} | {{ number_format($totals['tax'], 2) }} | {{ number_format($totals['other_charges'], 2) }} | {{ number_format($totals['penalties'], 2) }} | {{ $cur }}{{ number_format($totals['billed'], 2) }} | {{ $cur }}{{ number_format($totals['collected'], 2) }} | {{ number_format($totals['late_fees'], 2) }} | {{ number_format($totals['outstanding'], 2) }} | {{ number_format($totals['rate'], 1) }}% |