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

Test Questions List

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

Filter

Search Question

Clear
{{-- --}} @foreach($trQuestions as $trQuestion) {{-- --}} @endforeach
SL No. Category Question Options Answer Type Action
--}} {{-- --}} {{-- {{ $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 ?? '' }}
    @csrf @method('DELETE')
    @include('admin.sections.footer')
    @endsection @push('js') @endpush