@extends('layouts.admin') @section('title', 'Quiz Participation') @section('page-title', 'Quiz Participation') @section('content')

Welcome, Admin {{ $user->emp_id }}!

Employee ID: {{ $user->emp_id }} | Ready to test your knowledge?

{{ $totalQuizzes }}

Total Quizzes

{{ $completedQuizzes }}

Completed

{{ $totalScore }}

Total Score

{{ $averageScore }}%

Average Score

@if ($activeQuiz)
Active Quiz
{{ $activeQuiz->name }}

{{ \Carbon\Carbon::parse($activeQuiz->quiz_date)->format('M d, Y') }}

{{ \Carbon\Carbon::parse($activeQuiz->start_time)->format('g:i A') }} - {{ \Carbon\Carbon::parse($activeQuiz->end_time)->format('g:i A') }}

@if ($hasParticipatedInActive)
You have already participated in this quiz.
@else
@csrf
@endif
@else
No Active Quiz

There are no active quizzes available at the moment.

@endif @if ($userParticipations->count() > 0)
Quiz History
@foreach ($userParticipations as $participation) @endforeach
Quiz Name Date Score Status Actions
{{ $participation->quiz->name }} {{ \Carbon\Carbon::parse($participation->started_at)->format('M d, Y g:i A') }} @if ($participation->completed) {{ $participation->score }} @else - @endif @if ($participation->completed) Completed @else In Progress @endif @if ($participation->completed) View Results @else Continue @endif
@else
No Quiz History

You haven't participated in any quizzes yet.

@endif
@endsection