From c04f26eaa7249bc257e8a4f1f0e4cc43e9a79394 Mon Sep 17 00:00:00 2001 From: frederikpyt Date: Tue, 4 Aug 2020 17:45:10 +0200 Subject: [PATCH] fixes --- .../resources/views/admin/washing-reservations/index.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skolehjem/resources/views/admin/washing-reservations/index.blade.php b/skolehjem/resources/views/admin/washing-reservations/index.blade.php index 6afe65d..acc4864 100644 --- a/skolehjem/resources/views/admin/washing-reservations/index.blade.php +++ b/skolehjem/resources/views/admin/washing-reservations/index.blade.php @@ -38,7 +38,7 @@ @foreach($reservations as $reservation) {{ \App\WashingMachine::query()->find($reservation->machine_id)->name }} - {{ \Illuminate\Support\Facades\Date::createFromTimeStamp(strtotime($reservation->time))->format('d/m/Y \k\l\. H:i') }} {{ $reservation->time }} + {{ \Illuminate\Support\Facades\Date::createFromTimeStamp(strtotime($reservation->time))->format('d/m/Y \k\l\. H:i') }} {{ ucfirst(\App\User::query()->find($reservation->user_id)->name_first) }} {{ ucfirst(\App\User::query()->find($reservation->user_id)->name_last) }}
@csrf