@extends('layouts.customadmin') @section('content') @can('test_result_create')
@endcan{{ trans('cruds.testResult.fields.id') }} | {{ trans('cruds.testResult.fields.test') }} | {{ trans('cruds.testResult.fields.student') }} | {{ trans('cruds.testResult.fields.score') }} | ||
---|---|---|---|---|---|
{{ $testResult->id ?? '' }} | {{ $testResult->test->title ?? '' }} | {{ $testResult->student->name ?? '' }} | {{ $testResult->score ?? '' }} | @can('test_result_show') {{ trans('global.view') }} @endcan @can('test_result_edit') {{ trans('global.edit') }} @endcan @can('test_result_delete') @endcan |