DRP Workload Distribution

Workload allocation across Zonal DRPs.

@foreach ($filtered_branches as $branch) @php $drp = $branch->drp; $ticketCount = $drp?->tickets?->count() ?? 0; $percentage = $total_tickets > 0 ? round(($ticketCount / $total_tickets) * 100, 1) : 0; @endphp
{{ substr($drp->name, 0, 1) . '.' . $drp->surname }}
{{ $ticketCount }}
@endforeach

Ticket Mix by Category

Distribution of tickets across categories.

@if(empty($ticket_categories))
No categories reported yet
The ticket mix by category will appear here once tickets are created.
@else
@endif