@extends('layouts.app') @section('title', 'Staff Performance Dashboard') @section('content')
Track production staff productivity and performance metrics
Detailed breakdown of each staff member's productivity
| Rank | Staff Name | Orders Packed | Orders Completed | Total Orders | Daily Average | Performance | Report |
|---|---|---|---|---|---|---|---|
| @if($index == 0) 🏆 @elseif($index == 1) 🥈 @elseif($index == 2) 🥉 @else {{ $index + 1 }} @endif |
{{ $staff['staff_name'] }}
ID: {{ $staff['staff_id'] }}
|
{{ number_format($staff['total_packed']) }} | {{ number_format($staff['total_completed']) }} | {{ number_format($totalOrders) }} | {{ $dailyAverage }} /day | {{ $performanceLabel }} |
No staff activity found for the selected period.