On the admin entry page, display entry timestamps in central time.
This commit is contained in:
parent
8cfb9c1f06
commit
4f46328026
|
|
@ -64,7 +64,7 @@
|
|||
</x-form.form>
|
||||
</x-card.card>
|
||||
|
||||
{{-- Results Table--}}
|
||||
{{--Entries Table--}}
|
||||
<x-card.card class="mt-4">
|
||||
<x-table.table with_title_area>
|
||||
<x-slot:title class="ml-3">Entries</x-slot:title>
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
@endif
|
||||
</x-table.td>
|
||||
@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>
|
||||
@endforeach
|
||||
</x-table.body>
|
||||
|
|
|
|||
Loading…
Reference in New Issue