Water Bill |
Bill Month |
:
{{ $bill_month }}
|
Bill Due Date |
:
{{ date(config('settings.date_format'), strtotime(trim(str_replace('/', '-', $water_bill->bill_date)))) }}
|
Previous Reading |
:
{{ $water_bill->previous_reading }}
|
Current Reading |
:
{{ $water_bill->current_reading }}
|
Gallons |
:
{{$water_bill->gallons}}
|
Gallons Rate {{$transaction->systemSettingCurrency()}} |
:
{{$water_bill->gallon_rate}}
|
Amount {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($water_bill->amount) }}
|
Tax Amount {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($water_bill->tax_amount) }}
|
Discount Amount {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($water_bill->discount) }}
|
Arrears |
:
{{ $transaction->convert_money_format($water_bill->arrears_amount) }}
|
Amount Payable Before Due Date |
:
{{ $transaction->convert_money_format($total_amount_with_arrears) }}
|
Surcharge Amount {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($water_bill->surcharge_amount) }}
|
Amount Payable After Due Date |
:
{{ $transaction->convert_money_format($total_amount_due_date_with_arrears) }}
|