@extends('layouts.customadmin') @section('content') @can('test_result_create')
{{ trans('global.add') }} {{ trans('cruds.testResult.title_singular') }}
@endcan
{{ trans('cruds.testResult.title_singular') }} {{ trans('global.list') }}
@foreach($testResults as $key => $testResult) @endforeach
{{ 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
@endsection @section('scripts') @parent @endsection