@extends('layouts.frontend') @section('content')
assignment
{{ trans('cruds.questionAnswer.title_singular') }} {{ trans('global.list') }}
@foreach($questionAnswers as $key => $questionAnswer) @endforeach
{{ trans('cruds.questionAnswer.fields.id') }} {{ trans('cruds.questionAnswer.fields.quiz') }} {{ trans('cruds.questionAnswer.fields.answer_1') }} {{ trans('cruds.questionAnswer.fields.answer_2') }} {{ trans('cruds.questionAnswer.fields.answer_3') }} {{ trans('cruds.questionAnswer.fields.answer_4') }} {{ trans('cruds.questionAnswer.fields.correct_answer') }} {{ trans('cruds.questionAnswer.fields.shuffle_answers') }}  
{{ $questionAnswer->id ?? '' }} {{ $questionAnswer->quiz->title ?? '' }} {{ $questionAnswer->answer_1 ?? '' }} {{ $questionAnswer->answer_2 ?? '' }} {{ $questionAnswer->answer_3 ?? '' }} {{ $questionAnswer->answer_4 ?? '' }} {{ App\Models\QuestionAnswer::CORRECT_ANSWER_SELECT[$questionAnswer->correct_answer] ?? '' }} {{ $questionAnswer->shuffle_answers ?? '' }} shuffle_answers ? 'checked' : '' }}>
@can('question_answer_show') remove_red_eye {{ trans('global.view') }} @endcan
@can('question_answer_edit') show_chart {{ trans('global.edit') }} @endcan
@can('question_answer_delete')
@endcan
@endsection @section('scripts') @parent @endsection