@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)
الإجابة :
{{$response->option->option ?? ''}}
@if(isset($response->option->oimgurl) && ($response->option->oimgurl != NULL) )
@endif
@else
الإجابة :
{{$response->option->option?? ''}}
@endif
@empty
لا يوجد اختبارات
@endforelse
@endsection