| {{ __('Customer ID') }} | {{ $info_data->customer_unique_id }} |
| {{ __('Name') }} | {{ $info_data->customer_name }} |
| {{ __('Billing Type') }} | {{ __(ucfirst($info_data->billing->billing_type)) }} |
| {{ __('PPPoE Username') }} | {{ $info_data->pppUser->username ?? 'N/A' }} |
| {{ __('Address') }} | @foreach ($info_data->customerAddress as $address) {{ $address->input_type_dropdown }}, {{ $address->input_type_test }} @if($address->input_type_textarea) | {{ $address->input_type_textarea }} @endif @endforeach |
|
{{ __('Collected History') }}
@if(count($collectionSummary) > 0)
@foreach ($collectionSummary as $summary)
#{{ $summary->customer_collection_unique_id }}
({{ \Carbon\Carbon::parse($summary->collection_date)->format('d-M-Y') }})
{{ $summary->collection_amount }} {{ siteUrlSettings('site_currency') }}
@endforeach
@else
{{ __('No collection history found') }}
@endif
|
|