My Quiz History
View all your quiz attempts and scores
Total Attempts
{{ $attempts->total() }}
Pass Rate
{{ $passRate }}%
Average Score
{{ round($attempts->avg('score')) }}%
@if($attempts->isEmpty())
@else
{{-- Pagination --}}
@if($attempts->hasPages())
| Module | Score | Status | Time Taken | Date |
|---|---|---|---|---|
|
{{ $attempt->module->name ?? 'Unknown Module' }} |
{{ $attempt->score }}% | @if($attempt->status === 'pass') Pass @else Fail @endif | {{ floor($attempt->time_taken / 60) }}:{{ str_pad($attempt->time_taken % 60, 2, '0', STR_PAD_LEFT) }} | {{ $attempt->created_at->format('M d, Y') }} |
{{ $attempts->withQueryString()->links() }}
@endif
@endif