@extends('layouts.app') @section('content')

Process Water Bills

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(empty($latestBillingPeriod))
There are no unbilled water periods available for processing.
@else
@csrf
Water Billing Period: {{ $latestBillingPeriod ?? 'N/A' }}
@if(isset($pendingBills) && count($pendingBills) > 0) @foreach($pendingBills as $bill) @endforeach @else @endif
Select Invoice # Company Name Billing Period Consumption Type
{{ $bill->invoice_id ?? 'N/A' }} {{ $bill->company_name ?? 'N/A' }} {{ $bill->BillingPeriod ?? 'N/A' }} {{ $bill->ConsType ?? 'Water' }}
No pending water bills found
Close
Processing...

Processing water bills, please wait...

@if(session('processed_count')) @endif @endif
@endsection @push('styles') @endpush @push('scripts') @endpush