{{ __('lang.electricity') }} |
{{ __('lang.bill_month') }} |
:
{{ $bill_month }}
|
{{ __('lang.bill_due_date') }} |
:
{{ date(config('settings.date_format'), strtotime(trim(str_replace('/', '-', $electric_bill->bill_date)))) }}
|
{{ __('lang.previous_reading') }} |
:
{{ $electric_bill->previous_reading }}
|
{{ __('lang.current_reading') }} |
:
{{ $electric_bill->current_reading }}
|
{{ __('lang.current_units') }} |
:
{{ $electric_bill->units }}
|
{{ __('lang.per_unit_rate') }} |
:
{{ $electric_bill->unit_rate }}
|
{{ __('lang.amount') }} {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($electric_bill->amount) }}
|
{{ __('lang.tax_amount') }} {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($electric_bill->tax_amount) }}
|
{{ __('lang.discount_amount') }} {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($electric_bill->discount) }}
|
{{ __('lang.arrears') }} |
:
{{ $transaction->convert_money_format($electric_bill->arrears_amount) }}
|
{{ __('lang.amount_payable_before_due_date') }} |
:
{{ $transaction->convert_money_format($total_amount_with_arrears) }}
|
{{ __('lang.surcharge_amount') }} {{$transaction->systemSettingCurrency()}} |
:
{{ $transaction->convert_money_format($electric_bill->surcharge_amount) }}
|
{{ __('lang.amount_payable_after_due_date') }} |
:
{{ $transaction->convert_money_format($total_amount_due_date_with_arrears) }}
|