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