@extends('layouts.app') @section('page-title', __('Users & Leaderboard')) @section('title', __('Users & Leaderboard')) @section('content')
@include('partials.messages')

{{ __('Users & Leaderboard') }}

{{ __('Back to KPIs') }}

{{ __('Ranked by each user\'s overall score - the average of their avgScore across every evaluation they\'ve had. Highest first, so this list is also the top-performers leaderboard.') }}

@include('performance.partials.score-legend')
@forelse($rows as $index => $row) @empty @endforelse
# {{ __('User') }} {{ __('Overall Score') }} {{ __('Reviews') }} {{ __('Last Evaluated') }}
{{ $index + 1 }} {{ trim($row['user']->first_name . ' ' . $row['user']->last_name) }} @include('performance.partials.score-badge', ['score' => $row['overall_score']]) {{ $row['reviews_count'] }} {{ $row['last_evaluated'] ? \Illuminate\Support\Carbon::parse($row['last_evaluated'])->format('M j, Y') : '—' }}
{{ __('No evaluations recorded yet.') }}
@endsection