From 4f4632802644ad62e9bb347b805cc8887459b58f Mon Sep 17 00:00:00 2001 From: Matt Young Date: Tue, 9 Sep 2025 19:38:50 -0500 Subject: [PATCH] On the admin entry page, display entry timestamps in central time. --- resources/views/admin/entries/index.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/admin/entries/index.blade.php b/resources/views/admin/entries/index.blade.php index 710f1c1..b5c7694 100644 --- a/resources/views/admin/entries/index.blade.php +++ b/resources/views/admin/entries/index.blade.php @@ -64,7 +64,7 @@ -{{-- Results Table--}} +{{--Entries Table--}} Entries @@ -113,7 +113,7 @@ @endif @endif - {{ $entry->created_at->format('m/d/Y g:i A') }} + {{ $entry->created_at->setTimezone('America/Chicago')->format('m/d/Y g:i A') }} @endforeach