@extends('layouts.frontend') @section('content')
| {{ trans('cruds.questionAnswer.fields.quiz') }} | {{ $questionAnswer->quiz->title ?? '' }} |
|---|---|
| {{ trans('cruds.questionAnswer.fields.question') }} | {!! $questionAnswer->question !!} |
| {{ trans('cruds.questionAnswer.fields.answer_1') }} | {{ $questionAnswer->answer_1 }} |
| {{ trans('cruds.questionAnswer.fields.answer_2') }} | {{ $questionAnswer->answer_2 }} |
| {{ trans('cruds.questionAnswer.fields.answer_3') }} | {{ $questionAnswer->answer_3 }} |
| {{ trans('cruds.questionAnswer.fields.answer_4') }} | {{ $questionAnswer->answer_4 }} |
| {{ trans('cruds.questionAnswer.fields.correct_answer') }} |
{{ App\Models\QuestionAnswer::CORRECT_ANSWER_SELECT[$questionAnswer->correct_answer] ?? '' }} ({{ $questionAnswer->answer_1 }}) |
| {{ trans('cruds.questionAnswer.fields.correct_answer_point') }} | {{ $questionAnswer->correct_answer_point }} |
| {{ trans('cruds.questionAnswer.fields.shuffle_answers') }} | shuffle_answers ? 'checked' : '' }}> |
| {{ trans('cruds.questionAnswer.fields.is_appeared_in_series') }} | is_appeared_in_series ? 'checked' : '' }}> |
| {{ trans('cruds.questionAnswer.fields.appeared_on') }} | {{ $questionAnswer->appeared_on }} |