@extends('layouts.admin') @section('styles') @endsection @section('content')

Your scored {{ $examResult->percentage }}%

You answered {{ $examResult->total_correct_ans }} of {{$examResult->total_ques}} questions correctly.

Status

@if ($examResult->is_passed)
Passed
@else
Failed
@endif
@foreach ($temp['questions'] as $key=>$value)

{{ $key+1 }}) {{ $value }}

@php $rigntAnswer = ' '; @endphp @foreach ($temp['options'][$key] as $option) @if ($option->status == 1) @php $rigntAnswer = $option->title; @endphp @endif @if ($option->id == $temp['answer_id'][$key]) @if ($option->status == 1)

Your Answer: {{$option->title}} ( Correct)

@else

Your Answer: {{$option->title}} ( Wrong)

Correct Answer: {{ $rigntAnswer }}

@endif @endif @endforeach
@endforeach
@endsection @section('scripts') @parent @endsection