@extends('layouts.siswa') @section('title', 'Riwayat Ujian - CBT Online') @section('content')
{{ $totalExams }}
Total Ujian
{{ $passedExams }}
Lulus
{{ $failedExams }}
Gagal
{{ $averageScore }}
Rata-rata
@forelse($attempts as $attempt)
{{-- Card top strip: coloured by status --}}
{{-- Header row: name + badge --}}
{{ $exam->name }}
{{ $attempt->start_time->format('d M Y') }}
{{ $statusLabel }}
@if($showStats) {{-- Stats row - only show for completed exams --}}
Waktu
{{ $timeSpent }} Menit
Benar
{{ $attempt->correct_answers }}/{{ $attempt->total_questions }}
Nilai
{{ round($attempt->score, 0) }}
@endif {{-- Action button --}} @if($isInProgress) {{-- Resume button for in-progress exams --}} Lanjutkan Ujian @else {{-- Detail button for completed exams --}} @endif
@empty

Tidak ada riwayat ujian ditemukan

@endforelse
@forelse($attempts as $index => $attempt) @if($showStats) @else @endif @empty @endforelse
# Nama Ujian Tanggal Durasi Benar Nilai Status Aksi
{{ $index + 1 }} {{ $exam->name }} {{ $attempt->start_time->format('d M Y') }} {{ $timeSpent }} mnt {{ $attempt->correct_answers }}/{{ $attempt->total_questions }} {{ round($attempt->score, 0) }} Ujian sedang berlangsung {{ $statusLabel }} @if($isInProgress) {{-- Resume button for in-progress exams --}} Lanjutkan @else {{-- Detail button for completed exams --}} @endif

Tidak ada riwayat ujian ditemukan

{{-- Mobile pagination --}}
Tampilkan per halaman
@include('siswa.modal.history.detail') @endsection