Company Name:
{{ $pppoeMacReseller->company_name ?? 'N/A' }}
Full Name:
{{ $pppoeMacReseller->name }}
Email Address:
{{ $pppoeMacReseller->email }}
Phone Number:
{{ $pppoeMacReseller->phone ?? 'N/A' }}
Role:
@if($pppoeMacReseller->role === 'mac_reseller')
MAC Reseller
@elseif($pppoeMacReseller->role === 'reseller')
Reseller
@else
{{ ucfirst($pppoeMacReseller->role) }}
@endif
Status:
@if($pppoeMacReseller->status === 'active')
Active
@else
Inactive
@endif
Created At:
{{ $pppoeMacReseller->created_at->format('M d, Y h:i A') }}
Last Updated:
{{ $pppoeMacReseller->updated_at->format('M d, Y h:i A') }}
@if($pppoeMacReseller->address)
Address:
{{ $pppoeMacReseller->address }}
@endif