@php $statDesign = [ 'Total Clients' => ['clients', 'blue', '+12.4%', 'All client accounts'], 'Active Clients' => ['profile', 'green', '+4.8%', 'Retained this month'], 'Active Plans' => ['plans', 'purple', '+8.1%', 'Monthly packages'], 'Pending Requests' => ['requests', 'orange', 'Needs review', 'Client queue'], 'Pending Payments' => ['payments', 'blue', 'Manual proof', 'Approval waiting'], 'Remaining Tasks' => ['tasks', 'blue', 'In flow', 'Open work items'], 'Completed Tasks' => ['downloads', 'green', '+18.6%', 'Delivered output'], 'Monthly Revenue' => ['reports', 'purple', '+10.2%', 'Approved payments'], 'Today Work' => ['calendar', 'orange', 'Due today', 'Priority lane'], 'Designers' => ['designer', 'blue', 'Creative team', 'Available makers'], ]; @endphp
@foreach ($stats as $label => $value) @php [$icon, $tone, $growth, $detail] = $statDesign[$label]; @endphp {{ $label }} {{ is_numeric($value) ? number_format($value) : $value }} {{ $growth }} {{ $detail }} @endforeach

Revenue Overview

Approved agency revenue

JanFebMarAprMayJun

Task Progress

Completed vs remaining

@php $taskTotal = max(($stats['Completed Tasks'] ?? 0) + ($stats['Remaining Tasks'] ?? 0), 1); $taskDone = (int) round((($stats['Completed Tasks'] ?? 0) / $taskTotal) * 100); @endphp
{{ $taskDone }}%done
CompletedRemaining

Plus Tracker

Current work pulse

View
@foreach ([ ['Remaining Monthly Work', $stats['Remaining Tasks'], 'blue'], ['Remaining Requests', $stats['Pending Requests'], 'blue'], ['Due Tasks', $stats['Today Work'], 'orange'], ['Overdue Tasks', max(($stats['Remaining Tasks'] ?? 0) - ($stats['Today Work'] ?? 0), 0), 'red'], ['Completed Work', $stats['Completed Tasks'], 'green'], ['Pending Work', $stats['Pending Payments'], 'blue'], ] as [$pulseLabel, $pulseValue, $tone])
{{ $pulseLabel }}
{{ $pulseValue }}
@endforeach

G.Work / Task Management

Latest designer and client work

View All
@include('partials.task-table', ['tasks' => $tasks])

Pending Payments

Manual proof review queue

View All
@include('partials.payment-table', ['payments' => $payments])