From 04e0d6c3c13f15c584a304ef18fc8b630aebaf57 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 22 Dec 2025 15:01:53 +0100 Subject: [PATCH] Fix date handling in admin books page --- resources/views/admin/books/index.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/admin/books/index.blade.php b/resources/views/admin/books/index.blade.php index 060d7e244..0385b1c0d 100644 --- a/resources/views/admin/books/index.blade.php +++ b/resources/views/admin/books/index.blade.php @@ -62,7 +62,7 @@ @if($book->publishdate) - {{ date('Y-m-d', $book->publishdate) }} + {{ \Carbon\Carbon::parse($book->publishdate)->format('Y-m-d') }} @else — @endif