| Customer Name | Customer Type | Agreement Signee Permissions | Phone/Mobile | Action | |
|---|---|---|---|---|---|
|
{{ $cust->first_name }} {{ $cust->last_name }} |
{{ $cust->email }} | @php $phone = \App\Helpers\Helper::formatPhone($cust->phone ?? ''); $mobile = \App\Helpers\Helper::formatPhone($cust->mobile ?? ''); $phoneDisplay = []; if ($phone) $phoneDisplay[] = "P: " . $phone; if ($mobile) $phoneDisplay[] = "M: " . $mobile; @endphp {{ implode(' | ', $phoneDisplay) ?: 'N/A' }} | @unless($isCustomerContext) @endunless | ||
{{ $authUser->first_name }} {{ $authUser->last_name }} |
{{ $authUser->email }} | @php $phone = \App\Helpers\Helper::formatPhone($authUser->phone ?? ''); $mobile = \App\Helpers\Helper::formatPhone($authUser->mobile ?? ''); $phoneDisplay = []; if ($phone) $phoneDisplay[] = "P: " . $phone; if ($mobile) $phoneDisplay[] = "M: " . $mobile; @endphp {{ implode(' | ', $phoneDisplay) ?: 'N/A' }} |
|
||
| There are no customers. | |||||
| Agent Name | Agent Type | Phone/Mobile | Notes | Action | |
|---|---|---|---|---|---|
{{ $ag->first_name }} {{ $ag->last_name }} |
{{ $ag->email }} | @php $phone = \App\Helpers\Helper::formatPhone($ag->phone ?? ''); $mobile = \App\Helpers\Helper::formatPhone($ag->mobile ?? ''); $phoneDisplay = []; if ($phone) $phoneDisplay[] = "P: " . $phone; if ($mobile) $phoneDisplay[] = "M: " . $mobile; @endphp {{ implode(' | ', $phoneDisplay) ?: 'N/A' }} | {{ Str::limit($ag->note,50) }} | @unless($isAgentContext) @endunless | |
{{ $authUser->first_name }} {{ $authUser->last_name }} |
{{ $authUser->email }} | @php $phone = \App\Helpers\Helper::formatPhone($authUser->phone ?? ''); $mobile = \App\Helpers\Helper::formatPhone($authUser->mobile ?? ''); $phoneDisplay = []; if ($phone) $phoneDisplay[] = "P: " . $phone; if ($mobile) $phoneDisplay[] = "M: " . $mobile; @endphp {{ implode(' | ', $phoneDisplay) ?: 'N/A' }} | {{ Str::limit($authUser->note,50) }} | ||
| There are no agents. | |||||