@extends('layouts.customadmin') @section('content') @can('student_create')
@endcan{{ trans('cruds.student.fields.id') }} | {{ trans('cruds.student.fields.student') }} | {{ trans('cruds.user.fields.last_name') }} | {{ trans('cruds.student.fields.cohort') }} | {{--{{ trans('cruds.student.fields.course') }} | --}}||
---|---|---|---|---|---|---|
{{-- | --}} | |||||
{{ $student->id ?? '' }} | {{ $student->student->name ?? '' }} | {{ $student->student->last_name ?? '' }} | {{ $student->cohort->name ?? '' }} | {{--{{ $student->course->title ?? '' }} | --}}@can('student_show') {{ trans('global.view') }} @endcan @can('student_edit') {{ trans('global.edit') }} @endcan @can('student_delete') @endcan |