@extends('layouts.admin') @section('page-title') {{__('Manage Trainer')}} @endsection @section('breadcrumb') @endsection @section('action-btn')
@can('create trainer') @endcan
@endsection @section('content')
@if( Gate::check('edit trainer') ||Gate::check('delete trainer') ||Gate::check('show trainer')) @endif @foreach ($trainers as $trainer) @if( Gate::check('edit trainer') ||Gate::check('delete trainer') || Gate::check('show trainer')) @endif @endforeach
{{__('Branch')}} {{__('Full Name')}} {{__('Contact')}} {{__('Email')}}{{__('Action')}}
{{ !empty($trainer->branches)?$trainer->branches->name:'' }} {{$trainer->firstname .' '.$trainer->lastname}} {{$trainer->contact}} {{$trainer->email}} @can('show trainer') @endcan @can('edit trainer') @endcan @can('delete trainer')
{!! Form::open(['method' => 'DELETE', 'route' => ['trainer.destroy', $trainer->id],'id'=>'delete-form-'.$trainer->id]) !!} {!! Form::close() !!}
@endcan
@endsection