Customer 360 Search
@if(count($customers) > 0 && !$selectedCustomer)
@foreach($customers as $customer) @endforeach
@endif
@if($selectedCustomer)
Profile Info

Name: {{ $selectedCustomer->first_name }} {{ $selectedCustomer->last_name }}

Mobile: {{ $selectedCustomer->mobile_number }}

Email: {{ $selectedCustomer->card_holder_email }}

Job: {{ $selectedCustomer->job }}

Linked Devices
@if (session()->has('message'))
{{ session('message') }}
@endif
@foreach($customerDevices as $device) @endforeach
OS Token Status Action
{{ $device->operating_system }} @if($device->device_token) Linked @else Unlinked @endif @if($device->device_token) @else @endif
Recent Transactions (Debugger)
@foreach($recentTransactions as $txn) @endforeach
Date Amount Status Force Action
{{ $txn->created_at }} {{ $txn->transaction_value }} {{ ucfirst($txn->status) }} @if($txn->status == 'pending' || $txn->status == 'waiting') @else No Action @endif
@endif