@extends('layouts.app') @section('title', __('Leaderboard')) @section('content')
{{ __('Ranked by each user\'s overall score - the average of their completed reviews\' final scores. Highest first.') }}
| # | {{ __('User') }} | {{ __('Overall Score') }} | {{ __('Completed 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 completed reviews yet.') }} | ||||