@extends('layouts.grid') @section('content')
@foreach ($trainings as $training) @endforeach
add new {!! trans('labels.date') !!} {!! trans('labels.freeslots') !!} {!! trans('labels.comments') !!}
book a slot {{ $training->tr_date }} {{ $training->free_slots }} {!! $training->tr_comments !!} @if (Session::get('user')['role'] == 'admin')
@method('DELETE') @csrf

@endif
@endsection