@extends('layouts.admin') @section('content') @can('trainer_create')
@endcan{{ trans('cruds.trainer.fields.name') }} | {{ trans('cruds.trainer.fields.email') }} | {{ trans('cruds.trainer.fields.designation') }} | {{ trans('cruds.trainer.fields.organization') }} | {{ trans('cruds.trainer.fields.mobile') }} | ||
---|---|---|---|---|---|---|
{{ $trainer->name ?? '' }} | {{ $trainer->email ?? '' }} | {{ $trainer->designation ?? '' }} | {{ $trainer->organization ?? '' }} | {{ $trainer->mobile ?? '' }} | @can('trainer_show') {{ trans('global.view') }} @endcan @can('trainer_edit') {{ trans('global.edit') }} @endcan @can('trainer_delete') @endcan |