@extends('layouts.app') @section('title', 'Exam result — ' . $attempt->post?->title) @section('breadcrumb') Dashboard My applications Result @endsection @section('content')

Examination completed successfully

Your result is shown below. A copy has been sent to your registered email.

{{-- Score ring --}}

Your score

{{ $attempt->score }}
of {{ $attempt->total_questions }}
{{ $attempt->percentage_score }}%
Overall score
{{ $attempt->status_label }}
Attempt #{{ $attempt->attempt_no }} · {{ $attempt->submitted_at?->format('d M Y, h:i A') }}
{{-- Breakdown --}}

Answer breakdown

Candidate
{{ $attempt->user?->name }}
Post
{{ $attempt->post?->title }} ({{ $attempt->post?->code }})
Roll number
{{ $attempt->application?->roll_number }}
Submitted
{{ $attempt->submitted_at?->format('d M Y, h:i A') }}
@php $total = max(1, $attempt->total_questions); $pctCorrect = round($attempt->total_correct / $total * 100); $pctWrong = round($attempt->total_wrong / $total * 100); $pctUnans = round($attempt->total_unanswered / $total * 100); @endphp
Correct {{ $attempt->total_correct }} / {{ $attempt->total_questions }}
Wrong {{ $attempt->total_wrong }} / {{ $attempt->total_questions }}
Unanswered {{ $attempt->total_unanswered }} / {{ $attempt->total_questions }}
{{ $attempt->total_correct }}
Correct
{{ $attempt->total_wrong }}
Wrong
{{ $attempt->total_unanswered }}
Unanswered
@if($emailLog) @if($emailLog->isSent())

Result email with PDF answer sheet sent to {{ $emailLog->email_to }} at {{ $emailLog->sent_at?->format('d M Y, h:i A') }}.

@elseif($emailLog->isFailed())

Email delivery failed. Please download the PDF directly using the button above.

@else

Result email is being processed and will be sent to {{ $emailLog->email_to }}.

@endif @endif
Download answer sheet Back to application All applications
@endsection