@extends('layouts.default') @section('content')

{{ trans('labels.bookings') }}


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

@endif
@endsection