@extends('layouts.admin-master') @section('title') استعراض وتصحيح الاختبار : {{$test->exam->name}} ، الخاص بالطالب : {{$test->user->name}} @endsection @section('styles') @endsection @section('content')
عرض الأسئلة والأجابات
@if($test->total_points == -1)
@csrf
@forelse($test->responses as $key=>$response) @if($response->question->qtype_id == 1)
{{ $loop->iteration }} - {{$response->question->question ?? ''}} @if($response->question->qimgurl) @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
@endif @endsection