A/C No
{{ $customer->customer_unique_id ?? 'N/A' }}
Account Status
{{ ucfirst($customer->status ?? 'unknown') }}
Connection Status
@if($connectionStatus === 'checking...')
Checking...
@elseif($connectionStatus === 'online')
Online
@elseif($connectionStatus === 'offline')
Offline
@else
Unknown
@endif
Username
{{ $customer->pppUser?->username ?? 'N/A' }}
Full Name
{{ $customer->customer_name ?? 'N/A' }}
@if($customer->parents_name)
Father Name
{{ $customer->parents_name }}
@endif
Register Mobile
{{ $customer->mobile ?? 'N/A' }}
Register Email Id
{{ $customer->email ?? '.' }}
Billing Type
Prepaid
Current Package
{{ $customer->pppUser?->profile ?? 'N/A' }}
Sub Plan
{{ $customer->pppUser?->profile ?? 'N/A' }}
Account Expiration
{{ $billing->auto_disable_date ? \Carbon\Carbon::parse($billing->auto_disable_date)->format('d F, Y') : 'N/A' }}