From efe66cb342ca6c241299b173adba0083f3fe1ff1 Mon Sep 17 00:00:00 2001 From: IGORnvk Date: Sat, 9 Nov 2024 19:19:10 +0100 Subject: [PATCH] Remove timeslot from the start time reference --- resources/views/programme/show.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/programme/show.blade.php b/resources/views/programme/show.blade.php index 86aa53e4..1b7b9fea 100644 --- a/resources/views/programme/show.blade.php +++ b/resources/views/programme/show.blade.php @@ -77,8 +77,8 @@ class="text-yellow-500 flex transititext-primary text-primary transition duratio Place and time

Room: {{$presentation->room->name}}

-

Time: {{Carbon::parse($presentation->timeslot->start)->format('H:i')}} - - {{(Carbon::parse($presentation->timeslot->start)->addMinutes($presentation->duration))->format('H:i')}}

+

Time: {{Carbon::parse($presentation->start)->format('H:i')}} + - {{(Carbon::parse($presentation->start)->addMinutes($presentation->duration))->format('H:i')}}

@if(Auth::user()) @can('enroll', $presentation)