@extends('layouts.app') @push('styles') @endpush @push('scripts') @endpush @section('content')
Manage and send utility bills to customers
| # | Bill # | Customer | Period | Amount | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
UTL-{{ str_pad($bill->BillID, 5, '0', STR_PAD_LEFT) }}
{{ \Carbon\Carbon::parse($bill->BillingDate)->format('M d, Y') }}
|
{{ $bill->CustomerName }}
{{ $bill->CustomerEmail }}
|
KES
{{ number_format($bill->TotalBill, 2) }}
@if($bill->BalanceCF > 0)
Balance: {{ number_format($bill->BalanceCF, 2) }} KES
@endif
|
@if($bill->BalanceCF <= 0) Paid @elseif(\Carbon\Carbon::parse($bill->DueDate)->isPast()) Overdue @else Pending @endif |
|
|
No utility bills foundGet started by processing your first utility bill or adjust your filters to see existing bills. Process New Bill |
||||||