@extends('layouts.admin') @section('styles') @endsection @section('content')
Student Answer: @if ($examQuestion->answer) @if ($examQuestion->question->answer_type == 8) @php $selectedOption = $examQuestion->question->mcqOptions ->where('id', (int) $examQuestion->answer->answer_value) ->first(); @endphp {{ $selectedOption->title ?? 'Not Attempted' }} @else {{ $examQuestion->answer->answer_value ?? 'Not Attempted' }} @endif @endif
Correct Answer: @if ($examQuestion->question->answer_type == 8) @php $correctOption = $examQuestion->question->mcqOptions ->where('is_correct', 1) ->first(); @endphp {{ $correctOption->title ?? '-' }} @else {{ '-' }} @endif