@extends('layouts.customadmin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.testResult.title') }}
{{ trans('cruds.testResult.fields.id') }} {{ $testResult->id }}
{{ trans('cruds.testResult.fields.test') }} {{ $testResult->test->title ?? '' }}
{{ trans('cruds.testResult.fields.student') }} {{ $testResult->student->name ?? '' }}
{{ trans('cruds.testResult.fields.score') }} {{ $testResult->score }}
@endsection