@if($type == 'total_application')
| Sl |
Application For |
Application No |
Connection type |
Duration |
Application To |
Sub Station |
Phase |
@if(isset($data))
@foreach($data as $key=>$value)
| {{$loop->iteration}} |
{{$value->app_type_mapping_name_bn}} |
{{$value->app_no}} |
{{$value->app_conn_type}} |
{{$value->duration}} |
{{$value->designation_name}} |
{{$value->substation_name}} |
{{$value->phase_name}} |
@endforeach
@endif
@endif
@if($type == 'total_daily_fee')
| APPLICATION NO |
CHALLAN NO |
CHALLAN DATE |
ACCTTS |
PAYMENT RECEIVE DATE |
TOTAL AMOUNT |
@if(isset($data))
@foreach($data as $key=>$value)
| {{$value->app_no}} |
{{$value->app_chalan_no}} |
{{$value->app_chalan_date}} |
{{$value->po_acctts}} |
{{$value->po_receive_date}} |
{{$value->total_daily_fee}} |
@endforeach
@endif
@endif
@if($type == 'total_monthly_income')
| Customer Name |
Consumed Unit |
Total Bill Amount |
Bill Date |
Total Monthly Income |
@if(isset($data))
@foreach($data as $key=>$value)
| {{$value->customer_name}} |
{{$value->consumed_unit}} |
{{$value->total_bill_amount}} |
{{$value->bill_date}} |
{{$value->total_monthly_income}} |
@endforeach
@endif
@endif