{{-- resources/views/emails/candidate-result.blade.php --}}
@if($attempt->passed)
@else
@endif
{{ round($attempt->percentage) }}%

{{ $attempt->passed ? '๐ŸŽ‰ You Passed!' : '๐Ÿ“š Exam Completed' }}

{{ $attempt->exam->title }}

Hello, {{ $attempt->candidate->name }}!

@if($attempt->passed) Congratulations! You have successfully passed the exam. Your results are detailed below. @else Thank you for taking the exam. Unfortunately, you did not meet the passing mark this time. @if($attempt->exam->max_attempts > 1) You may have additional attempts remaining. @endif @endif

Exam {{ $attempt->exam->title }}
Score {{ $attempt->total_score }} / {{ $attempt->exam->total_marks }}
Percentage {{ round($attempt->percentage, 2) }}%
Grade {{ $attempt->grade_label }}
Pass Mark {{ $attempt->exam->pass_percentage }}%
Status {{ $attempt->passed ? 'โœ“ PASSED' : 'โœ— NOT PASSED' }}
@if($attempt->time_taken_seconds)
Time Taken {{ gmdate('H:i:s', $attempt->time_taken_seconds) }}
@endif
Submitted {{ $attempt->submitted_at?->format('D, M j Y H:i') }}
View Detailed Results โ†’