@include('layouts.admin.appheader')
@include('layouts.admin.sidemenubar')
Customers
@foreach ($customers as $customer) @endforeach
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 }}
@foreach ($customers as $customer)
{{ $customer->customer_id }}
Name
:
{{ $customer->first_name }} {{ $customer->last_name }}
Email
:
{{ $customer->email }}
Phone
:
{{ $customer->phone }}
Numbers
:
    @if(!empty($customer->formattedNumbers)) @foreach($customer->formattedNumbers as $num)
  •   {{ $num }}
  • @endforeach @else @endif
Assistants
:
    @if(!empty($customer->formattedAssistants)) @foreach($customer->formattedAssistants as $assistant)
  • supervisor_account  {{ $assistant }}
  • @endforeach @else @endif
Workflows
:
    @if(!empty($customer->formattedWorkflows)) @foreach($customer->formattedWorkflows as $workflow)
  • Automation  {{ $workflow }}
  • @endforeach @else @endif
Status
:
{!! $customer->status == 1 ? 'cloud' : 'cloud_off' !!}
Created
:
{{ $customer->createdAt }}
Updated
:
{{ $customer->updatedAt }}
@endforeach
Showing 1 to 10 of {{ count($customers) }} entries