@extends('layouts.admin') @section('content') @can('health_record_create')
@endcan{{ trans('cruds.healthRecord.fields.id') }} | {{ trans('cruds.healthRecord.fields.illness') }} | {{ trans('cruds.healthRecord.fields.year') }} | ||
---|---|---|---|---|
{{ $healthRecord->id ?? '' }} | {{ $healthRecord->illness ?? '' }} | {{ $healthRecord->year ?? '' }} | @can('health_record_show') {{ trans('global.view') }} @endcan @can('health_record_edit') {{ trans('global.edit') }} @endcan @can('health_record_delete') @endcan |