@forelse($attempts as $attempt)
@if($attempt->is_passed) @else @endif

{{ $attempt->exam->course->title ?? 'Unknown Course' }} - Final Exam

Attempted: {{ $attempt->created_at->format('M d, Y h:i A') }} Score: {{ number_format($attempt->score, 1) }}%
{{ $attempt->is_passed ? 'PASSED' : 'FAILED' }} @if($attempt->is_passed && \App\Models\Certificate::where('exam_attempt_id', $attempt->id)->exists()) View Certificate @endif
@empty

No Exam Attempts

You haven't taken any exams yet.

@endforelse