@extends('layouts.admin') @section('content')
{{ trans('cruds.testAnswer.fields.id') }} | {{ $testAnswer->id }} |
---|---|
{{ trans('cruds.testAnswer.fields.test_result') }} | {{ $testAnswer->test_result->score ?? '' }} |
{{ trans('cruds.testAnswer.fields.question') }} | {{ $testAnswer->question->question_text ?? '' }} |
{{ trans('cruds.testAnswer.fields.option') }} | {{ $testAnswer->option->option_text ?? '' }} |
{{ trans('cruds.testAnswer.fields.is_correct') }} | is_correct ? 'checked' : '' }}> |