@php $palette = [ 'sky' => ['bg' => 'bg-sky-50', 'ring' => 'ring-sky-100', 'text' => 'text-sky-600', 'accent' => 'text-sky-700'], 'amber' => ['bg' => 'bg-amber-50', 'ring' => 'ring-amber-100', 'text' => 'text-amber-600', 'accent' => 'text-amber-700'], 'blue' => ['bg' => 'bg-blue-50', 'ring' => 'ring-blue-100', 'text' => 'text-blue-600', 'accent' => 'text-blue-700'], 'emerald' => ['bg' => 'bg-emerald-50', 'ring' => 'ring-emerald-100', 'text' => 'text-emerald-600', 'accent' => 'text-emerald-700'], 'rose' => ['bg' => 'bg-rose-50', 'ring' => 'ring-rose-100', 'text' => 'text-rose-600', 'accent' => 'text-rose-700'], 'indigo' => ['bg' => 'bg-indigo-50', 'ring' => 'ring-indigo-100', 'text' => 'text-indigo-600', 'accent' => 'text-indigo-700'], 'violet' => ['bg' => 'bg-violet-50', 'ring' => 'ring-violet-100', 'text' => 'text-violet-600', 'accent' => 'text-violet-700'], 'slate' => ['bg' => 'bg-slate-50', 'ring' => 'ring-slate-100', 'text' => 'text-slate-600', 'accent' => 'text-slate-700'], ]; $applicationsRoute = route('admin.applications.index'); $appCards = [ [ 'label' => 'Total Applications', 'value' => $total, 'sub' => 'All time', 'icon' => 'fa-clipboard-list', 'color' => 'sky', 'href' => $applicationsRoute, ], [ 'label' => 'Pending', 'value' => $pending, 'sub' => 'Awaiting confirmation', 'icon' => 'fa-clock', 'color' => 'amber', 'href' => $applicationsRoute.'?status=pending', ], [ 'label' => 'In Process', 'value' => $inProcess, 'sub' => 'Being processed', 'icon' => 'fa-arrows-rotate', 'color' => 'blue', 'href' => $applicationsRoute.'?status=in_process', ], [ 'label' => 'Approved', 'value' => $approved, 'sub' => 'Successfully completed', 'icon' => 'fa-circle-check', 'color' => 'emerald', 'href' => $applicationsRoute.'?status=approved', ], [ 'label' => 'Rejected', 'value' => $rejected, 'sub' => 'Applications rejected', 'icon' => 'fa-circle-xmark', 'color' => 'rose', 'href' => $applicationsRoute.'?status=rejected', ], ]; $peopleCards = [ [ 'label' => 'Customers', 'value' => $customers, 'sub' => 'Registered customer accounts', 'icon' => 'fa-user-group', 'color' => 'indigo', 'href' => route('admin.users'), ], [ 'label' => 'Agents', 'value' => $agents, 'sub' => 'Approved partner agents', 'icon' => 'fa-id-badge', 'color' => 'violet', 'href' => route('admin.users.agents'), ], [ 'label' => 'Pending Approvals', 'value' => $pendingRegistrations, 'sub' => 'Awaiting your review', 'icon' => 'fa-user-clock', 'color' => 'amber', 'href' => route('admin.users'), ], ]; @endphp
{{-- Applications row --}}

Applications

View all
@foreach ($appCards as $card) @php($c = $palette[$card['color']])

{{ $card['label'] }}

{{ number_format($card['value']) }}

{{ $card['sub'] }}

@endforeach
{{-- People row --}}

Users & roles

Manage
@foreach ($peopleCards as $card) @php($c = $palette[$card['color']])

{{ $card['label'] }}

{{ number_format($card['value']) }}

{{ $card['sub'] }}

@endforeach