@extends('layouts.admin') @section('content') @can('test_create')
@endcan{{ trans('cruds.test.fields.id') }} | {{ trans('cruds.test.fields.course') }} | {{ trans('cruds.test.fields.lesson') }} | {{ trans('cruds.test.fields.title') }} | {{ trans('cruds.test.fields.description') }} | {{ trans('cruds.test.fields.is_published') }} | ||
---|---|---|---|---|---|---|---|
{{ $test->id ?? '' }} | {{ $test->course->title ?? '' }} | {{ $test->lesson->title ?? '' }} | {{ $test->title ?? '' }} | {{ $test->description ?? '' }} | is_published ? 'checked' : '' }}> | @can('test_show') {{ trans('global.view') }} @endcan @can('test_edit') {{ trans('global.edit') }} @endcan @can('test_delete') @endcan |