@include('layouts.admin.appheader')
Customers
| S.No | Customer ID | Name | Contact Number | Linked Phone Numbers | Assigned Assistants | Status | Created At | Updated At | Action | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{$customer->sno}} | {{$customer->customer_id}} | {{$customer->first_name}} {{$customer->last_name}} | {{$customer->email}} | {{$customer->phone}} | @if(!empty($customer->formattedNumbers))
@foreach($customer->formattedNumbers as $num)
{{ $num }}
@endforeach
@else
—
@endif
|
@if(!empty($customer->formattedAssistants))
@foreach($customer->formattedAssistants as $assistant)
{{ $assistant }}
@endforeach
@else
—
@endif
|
{!! $customer->status == 1 ? 'Active' : 'Inactive' !!} | {{ $customer->createdAt }} | {{ $customer->updatedAt }} |