@can('question_answer_create')
@endcan| {{ 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] ?? '' }} | shuffle_answers ? 'checked' : '' }}> | @can('question_answer_show') {{ trans('global.view') }} @endcan @can('question_answer_edit') {{ trans('global.edit') }} @endcan @can('question_answer_delete') @endcan |