@extends('layouts.app') @section('title', 'Monthly Financial Report') @section('content') @php $cur = ($filters['currency'] ?? 'PHP') === 'PHP' ? '₱' : $filters['currency'] . ' '; @endphp
Back to Reports

Monthly Financial Report

Billed, collected and outstanding amounts per month

@include('reports.partials.filter', ['route' => 'reports.financial'])
Total Billed

{{ $cur }}{{ number_format($totals['billed'], 2) }}

{{ number_format($totals['bills']) }} bills issued
Total Collected

{{ $cur }}{{ number_format($totals['collected'], 2) }}

{{ number_format($totals['payments']) }} payments received
Outstanding

{{ $cur }}{{ number_format($totals['outstanding'], 2) }}

unpaid on bills in this range
Collection Rate

{{ number_format($totals['rate'], 1) }}%

{{ $cur }}{{ number_format($totals['late_fees'], 2) }} late fees applied
Monthly Breakdown
@forelse($rows as $row) @empty @endforelse @if($rows->isNotEmpty()) @endif
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) }}%
@endsection