@extends('Training::backend.layouts.app') @section('title', 'Select Questions for Test') @push('css') @endpush @section('content')

Select Questions for Test

{{ $trTest->name }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Filter

Search Question

Clear

Lists

@foreach($trQuestions as $trQuestion) @endforeach
SL No. Category Question Options Answer Type
{{ $loop->iteration ?? '' }} {{ $trQuestion->trCourseCategory->name ?? '' }} {{ str_limit($trQuestion->question, 50) ?? '' }} @forelse((array)$trQuestion->options as $options)
  • {{ $options }}
  • @empty N/A @endforelse
    @forelse((array)$trQuestion->answer as $answer)
  • {{ $answer }}
  • @empty N/A @endforelse
    {{ $trQuestion->type ?? '' }}
    @include('admin.sections.footer')
    @endsection @push('js') @endpush