{{-- Layout --}} @extends('teacher.layout.layout') {{-- Page Title --}} @section('title', 'GAS LMS | Preview Match Question') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['All Questions' => route('teacher.questionbank.show', [$course_id,$question->question_bank_id])]]) @endsection {{-- Content --}} @section('content') @include('components._error')
Preview Match Question

* Match the following :-

{{--begin question --}}
@if ($question->matchQuestion->questiontext)
@endif

{{$question->matchQuestion->name}} @if ($question->matchQuestion->hint) @endif

@if ($question->matchQuestion->questiontext)
{!! $question->matchQuestion->questiontext !!}
@endif
{{--end question --}} {{-- start:question multimedia --}} @if ($question_attachments->count() > 0) @foreach ($question_attachments as $question_attachment) @if ($question_attachment->type == 'ogg' || $question_attachment->type == 'mp4' || $question_attachment->type == 'mp3')
@else
{{-- Attachment {{++$count}} --}} Download
@endif @endforeach @endif {{-- end:question multimedia --}}
Left Side
@foreach ($left_side as $left_item)
{{$left_item->description}}
@if ($left_item->multimedia_id)
{{$left_item->description}}
@endif
@endforeach
Right Side
@foreach ($right_side as $right_item)
{{$right_item->description}}
@if ($right_item->multimedia_id)
{{$right_item->description}}
@endif
@endforeach
@endsection