Claims Handler Dashboard

{{ $handler->name_first }} {{ $handler->name_last }}

Workload, client progress and daily performance.

@can('users.view')
@endcan
@foreach($cards as $card) @php $color = match ($card['tone']) { 'orange' => 'warning', 'green' => 'success', 'red' => 'danger', 'purple' => 'info', default => 'primary', }; @endphp
{{ $card['title'] }}
@isset($card['value'])
{{ number_format($card['value']) }}
@endisset
{{ $card['description'] }}
@isset($card['periods'])
Today
{{ number_format($card['periods']['today']) }}
This Week
{{ number_format($card['periods']['week']) }}
{{ $monthLabel }}
{{ number_format($card['periods']['month']) }}
@endisset @isset($card['progress'])
0 {{ number_format($card['progress']['max']) }}
@endisset
@endforeach
@if($activeList)
{{ $activeList['title'] }}
{{ $activeList['subtitle'] }} - {{ $activePeriodLabel }} - {{ $activeList['items']->count() }} files
@if($activeList['items']->isEmpty())
No files make up this figure.
@else
@foreach($activeList['items'] as $item) @endforeach
Reference Client Status Created
{{ $item['reference'] }} {{ $item['name'] }} {{ $item['status'] }} {{ $item['created'] }} View File
@endif
@endif
New Leads Queue
Unassigned API leads are removed automatically when a handler is added.
{{ $leadQueue->count() }} waiting
@forelse($leadQueue as $lead) @empty @endforelse
Client Reference Lead Source Received
{{ $lead->getRawOriginal('name_first') }} {{ $lead->getRawOriginal('name_last') }} {{ $lead->reference ?: $lead->display_id }} {{ $lead->leadSource?->display_name ?? 'API' }} {{ $lead->created_at?->diffForHumans() }} View Lead
All new leads have been assigned.