@extends('layouts.app') @section('content') Billing Summary Report (Electricity Charges)
HassConsult Limited
P.O. Box 14090-00800 Nairobi Tel: +254 20 4446914 Email: info@hassconsult.co.ke
Billing Date:  {{ now()->format('d-m-Y') }} Total Bills:  {{ $bills->count() }}
Billing Summary Report (Electricity Charges)
Period: {{ now()->format('F Y') }}
@forelse($bills as $bill) @empty @endforelse
Account No Tenant/Owner Name Property Location Meter No Current Previous Cons. (Kwh) Bill Total (Ksh)
{{ $bill['AccountNo'] }} {{ $bill['CustomerName'] }} {{ $bill['PropertyLocation'] }} {{ $bill['MeterNo'] }} {{ number_format($bill['CurReading']) }} {{ number_format($bill['PrvReading']) }} {{ number_format($bill['ConsumptionBilled']) }} {{ number_format($bill['TotalBill'], 2) }}
No data found for the selected criteria.
TOTAL {{ number_format($totals['current_total']) }} {{ number_format($totals['previous_total']) }} {{ number_format($totals['consumption_total']) }} {{ number_format($totals['amount_total'], 2) }}
@endsection