@extends('layouts.admin') @section('title', 'Quiz Results') @section('page-title', 'Quiz Results') @section('content')
{{ \Carbon\Carbon::parse($quiz->quiz_date)->format('M d, Y') }} | {{ \Carbon\Carbon::parse($quiz->start_time)->format('g:i A') }} - {{ \Carbon\Carbon::parse($quiz->end_time)->format('g:i A') }}
Total Participants
Highest Score
Average Score
Fastest Time
| Rank | Employee | Score | Time Taken | Performance |
|---|---|---|---|---|
|
@if ($index === 0)
{{ $index + 1 }}
@endif
|
{{ strtoupper(substr($employeeQuiz->name, 0, 1)) }}
{{ $employeeQuiz->name }}
ID: {{ $employeeQuiz->employee_id }} |
{{ $employeeQuiz->score }}
|
{{ gmdate('H:i:s', $employeeQuiz->time_taken) }}
|
@php $avgTime = $sortedEmployeeQuizzes->avg('time_taken'); $performance = $employeeQuiz->time_taken < $avgTime ? 'fast' : 'normal'; @endphp @if ($performance === 'fast') Fast @else Normal @endif |