@extends('layouts.app') @section('page-title', __('Users & Leaderboard')) @section('title', __('Users & Leaderboard')) @section('content')
{{ __('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.') }}
| # | {{ __('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.') }} | ||||