@extends('frontend.layouts.app') @push('headScript') @endpush @section('content')

تدريب علي {{ $currentCurriculum->Section->name }}

الوقت المحدد للتدريب
0:00:00 / 0:00:00
@foreach($questions->groupBy('type') as $type=>$items) @if($type=='true_false')
ضع علامة صح (
True
)
امام الإجابة الصحيحة
و علامة (
False
)
امام الإجابة الخطأ
@foreach($items as $question)
{{ $question->name }}
@endforeach
@else
اختر الإجابة الصحيحة:
@foreach($items as $question)
{{ $question->name }}
@if($question->type=='chose_multiple')
(يمكن اختيار أكثر من إجابة)
@else
(اختيار واحد فقط)
@endif
@foreach($question->Details as $detail) @endforeach
@endforeach
@endif @endforeach
إلغاء التدريب
@endsection @push('footerScript') @endpush