@extends('layouts.app') @section('title', 'Performance Arena') @push('styles') @endpush @section('content') @php $actionsHtml = '
'; @endphp @include('components.page-header', [ 'title' => 'Workforce Performance Arena', 'description' => 'Celebrating excellence and high-performance engineering through audited gamification metrics.', 'breadcrumbs' => ['Home' => route('admin.dashboard'), 'Leaderboard' => '#'], 'actions' => $actionsHtml ])
@if($employeeOfMonth)
{{ substr($employeeOfMonth->user?->name ?? 'U', 0, 1) }}
ENGINEER OF THE MONTH

{{ $employeeOfMonth->user?->name }}

TOTAL POINTS
{{ number_format($employeeOfMonth->total_points) }}
PERFORMANCE SCORE
{{ $employeeOfMonth->performance_score }}%
@else

The Champion\'s Podium is currently vacant for this period

@endif

Global Workforce Rankings

AUDITED STANDINGS
@forelse($rows as $row) @php $rankClass = match($row->rank_position) { 1 => 'rank-1', 2 => 'rank-2', 3 => 'rank-3', default => 'rank-other' }; @endphp @empty @endforelse
Rank Engineer Identity Intelligence Points Performance Rating Audited Status
{{ $row->rank_position }}
{{ substr($row->user?->name ?? 'U', 0, 1) }}
{{ $row->user?->name }}
{{ number_format($row->total_points) }} PTS
{{ $row->performance_score }}%
@if($row->employee_of_month) TOP PERFORMER @else QUALIFIED @endif

No arena data discovered for this cycle

@endsection