@extends('layouts.admin-master') @section('title') استعراض الاختبار : {{$test->exam->name}} ، الخاص بالطالب : {{$test->user->name}} @endsection @section('styles') @endsection @section('content')
عرض الأسئلة والأجابات
@forelse($test->responses as $key=>$response) @if($response->question->qtype_id == 1)
{{ $loop->iteration }} - {{$response->question->question ?? ''}} @if(isset($response->question->qimgurl) && ($response->question->qimgurl != NULL) ) @endif
الإجابة :
{{$response->option->option ?? ''}} @if(isset($response->option->oimgurl) && ($response->option->oimgurl != NULL) ) @endif
@else
{{ $loop->iteration }} - {{$response->question->question ?? ''}} @if($response->question->qimgurl)
@endif
الإجابة :
{{$response->option->option?? ''}}

{{$response->option_text}}

@endif @empty لا يوجد اختبارات @endforelse
@endsection