@if ($companyLogo) Company Logo @endif
{{ $companyName ?? $settings?->app_name ?? 'Water Billing System' }}
@if ($settings?->app_address) {{ $settings->app_address }}
@endif @if ($settings?->app_phone) Phone: {{ $settings->app_phone }}
@endif @if ($settings?->app_email) Email: {{ $settings->app_email }} @endif
WATER BILLING STATEMENT
Billing #: {{ $billing->billing_number }}
Billing Date: {{ $billing->billing_date->format('F d, Y') }}
Due Date: {{ $billing->due_date->format('F d, Y') }}
@if($billing->disconnection_date) Disconnection Date: {{ $billing->disconnection_date->format('F d, Y') }} @endif
Currency: {{ $companyCurrency ?? 'PHP' }}
BILLING TO
Account Number: {{ $billing->client->account_number }}
Name: {{ $billing->client->name }}
Meter Number: {{ $billing->client->meter_number ?? 'N/A' }}
Address: {{ $billing->client->address ?? '-' }}
City/Municipality: {{ $billing->client->city ?? '-' }}
Description Amount
Water Consumption Charges
From {{ number_format($billing->previous_reading, 2) }} cu.m to {{ number_format($billing->current_reading, 2) }} cu.m
Total Units: {{ number_format($billing->units_consumed, 2) }} cu.m
{{ $companyCurrency ?? '₱' }} {{ number_format($billing->subtotal, 2) }}
@if ($billing->tax > 0) @endif @if ($billing->other_charges > 0) @endif @if ($billing->penalties > 0) @endif @if (($projectedLateFee ?? 0) > 0) @endif @if ($billing->amount_paid > 0) @endif
Subtotal {{ $companyCurrency ?? '₱' }} {{ number_format($billing->subtotal, 2) }}
Tax {{ $companyCurrency ?? '₱' }} {{ number_format($billing->tax, 2) }}
Other Charges {{ $companyCurrency ?? '₱' }} {{ number_format($billing->other_charges, 2) }}
Penalties {{ $companyCurrency ?? '₱' }} {{ number_format($billing->penalties, 2) }}
TOTAL AMOUNT DUE {{ $companyCurrency ?? '₱' }} {{ number_format($billing->total_amount_due, 2) }}
Amount if paid on/before {{ $billing->due_date->format('M d, Y') }} {{ $companyCurrency ?? '₱' }} {{ number_format($billing->total_amount_due, 2) }}
AMOUNT AFTER DUE DATE
includes {{ $companyCurrency ?? '₱' }} {{ number_format($projectedLateFee, 2) }} late payment fee
{{ $companyCurrency ?? '₱' }} {{ number_format($billing->total_amount_due + $projectedLateFee, 2) }}
Amount Paid {{ $companyCurrency ?? '₱' }} {{ number_format($billing->amount_paid, 2) }}
Balance {{ $companyCurrency ?? '₱' }} {{ number_format($billing->balance, 2) }}
@if ($billing->remarks)
Remarks:
{{ $billing->remarks }}
@endif @if($meterReader || $paymentProcessor)
Staff Information
@if($meterReader) Meter Reader: {{ $meterReader->name }}
@endif @if($paymentProcessor) Payment Processor: {{ $paymentProcessor->name }}
@endif
@endif @if($qrCode)
Billing QR Code
@endif @if ($settings?->billing_footer_text)
{{ $settings->billing_footer_text }}
@endif