@extends('layouts.pdf') @section('title') Utility Bill @stop @section('content')
@foreach ($electric_bills as $electric_bill) @php $bill_month = '1-' . $electric_bill->month . '-' . $electric_bill->year; $bill_month = date('M-Y', strtotime($bill_month)); $total_amount_with_arrears = $electric_bill->total_amount + $electric_bill->arrears_amount; $total_amount_due_date_with_arrears = $electric_bill->amount_after_due_date + $electric_bill->arrears_amount; @endphp
@include('admin.maintenance.partial.pdf.letter_head')
@include('admin.maintenance.partial.pdf.bill_special_txt')
{{--

{{ $electric_bill->product->branch->name }}

--}}

ELECTRICITY BILL

Unit No: {{ $electric_bill->product->product_unique_id }}          @if(!empty($electric_bill->product->floor_number)) Floor:{{ $electric_bill->product->floor_number ?? '-' }}

@endif

Block: {{ $electric_bill->product->block->name }}

Registration No: {{$electric_bill->product->sell->registration_no ?? '-'}}

____________________________________________________________________________________________________________

Billing Month Issue Date Due Date
{{ $bill_month }} {{ $transaction->date_format($electric_bill->created_at) }} {{ date(config('settings.date_format'), strtotime($electric_bill->bill_date)) }}

____________________________________________________________________________________________________________

Previous Reading Current Reading Net Unit Rate {{$transaction->systemSettingCurrency()}} Unit {{$transaction->systemSettingCurrency()}}
{{ $electric_bill->previous_reading }} {{ $electric_bill->current_reading }} {{ $electric_bill->units }} {{ $electric_bill->unit_rate }} {{ $transaction->convert_money_format($electric_bill->amount) }}

____________________________________________________________________________________________________________

Electricity Charges Total Current Bill Amount after due date
{{ $transaction->convert_money_format($electric_bill->amount) }} {{ $transaction->convert_money_format($electric_bill->amount) }} {{ $transaction->convert_money_format($electric_bill->amount_after_due_date) }}

____________________________________________________________________________________________________________

{{--

Arears: {{ $transaction->convert_money_format($electric_bill->arrears_amount) }}

--}} {{-- --}}
Arears: {{ $transaction->convert_money_format($electric_bill->arrears_amount) }} Amount Payable: {{ $transaction->convert_money_format($electric_bill->amount) }} Due Date: {{$electric_bill->bill_date}}
Due Date: {{ $electric_bill->bill_date }}

AFTER DUE DATE: DISCONNECTION


  1. Kindly clear your dues before due date otherwise Management of {{ $electric_bill->product->branch->name }} will be authorized to disconnect your Electricity/ Water Connections.
  2. Kindly deposit your bill payment to below mentioned account number

{{--

Account Title: Dominion Mall       Account No:PK-41-MPBL----

{{__('lang.bank')}}: Habib Metropolitan       Branch:{{ $electric_bill->product->branch->name }}

--}}

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------

OFFICE RECEIPT

Unit No: {{ $electric_bill->product->product_unique_id }} Previous Reading: {{ $electric_bill->previous_reading }} Due Date: {{ date(config('settings.date_format'), strtotime($electric_bill->bill_date)) }} Amount Payable
Month: {{ $bill_month }} Current Reading: {{ $electric_bill->current_reading }} Bill Validity:{{ date(config('settings.date_format'), strtotime($electric_bill->bill_date)) }} {{ $transaction->convert_money_format($electric_bill->amount) }}

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------

@php $bill = $electric_bill; @endphp @include('admin.maintenance.utility-bill.partials.bank_details')
@include('admin.maintenance.utility-bill.partials.bill_issued_by' , ['branch'=> $electric_bill->branch ])
@endforeach
@stop