@extends('layouts.admin') @section('content') @can('test_answer_create')
@endcan{{ trans('cruds.testAnswer.fields.id') }} | {{ trans('cruds.testAnswer.fields.test_result') }} | {{ trans('cruds.testAnswer.fields.question') }} | {{ trans('cruds.testAnswer.fields.option') }} | {{ trans('cruds.testAnswer.fields.is_correct') }} | ||
---|---|---|---|---|---|---|
{{ $testAnswer->id ?? '' }} | {{ $testAnswer->test_result->score ?? '' }} | {{ $testAnswer->question->question_text ?? '' }} | {{ $testAnswer->option->option_text ?? '' }} | is_correct ? 'checked' : '' }}> | @can('test_answer_show') {{ trans('global.view') }} @endcan @can('test_answer_edit') {{ trans('global.edit') }} @endcan @can('test_answer_delete') @endcan |