@include('layouts.admin.appheader')
@include('layouts.flashmsg')
Customers
| Customer ID | Customer Info | Phone Numbers | Assistants | Workflows | Status | Created | Updated | Action |
|---|---|---|---|---|---|---|---|---|
| {{$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)
supervisor_account {{ $assistant }}
@endforeach
@else
—
@endif
|
@if(!empty($customer->formattedWorkflows))
@foreach($customer->formattedWorkflows as $workflow)
Automation {{ $workflow }}
@endforeach
@else
—
@endif
|
{!! $customer->status == 1 ? 'cloud' : 'cloud_off' !!} | {{ $customer->createdAt }} | {{ $customer->updatedAt }} |