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