On the admin entry page, display entry timestamps in central time.

This commit is contained in:
Matt Young 2025-09-09 19:38:50 -05:00
parent 8cfb9c1f06
commit 4f46328026
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@
</x-form.form> </x-form.form>
</x-card.card> </x-card.card>
{{-- Results Table--}} {{--Entries Table--}}
<x-card.card class="mt-4"> <x-card.card class="mt-4">
<x-table.table with_title_area> <x-table.table with_title_area>
<x-slot:title class="ml-3">Entries</x-slot:title> <x-slot:title class="ml-3">Entries</x-slot:title>
@ -113,7 +113,7 @@
@endif @endif
</x-table.td> </x-table.td>
@endif @endif
<x-table.td>{{ $entry->created_at->format('m/d/Y g:i A') }}</x-table.td> <x-table.td>{{ $entry->created_at->setTimezone('America/Chicago')->format('m/d/Y g:i A') }}</x-table.td>
</tr> </tr>
@endforeach @endforeach
</x-table.body> </x-table.body>