From c4f5ab12cfa86a1d027c292188d843562c6bf4e3 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sun, 30 May 2021 00:02:32 +0100 Subject: [PATCH] Aligned export and revision shown date format As raised in #2771 --- resources/views/partials/entity-export-meta.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/partials/entity-export-meta.blade.php b/resources/views/partials/entity-export-meta.blade.php index 32b26750e..02a39e78c 100644 --- a/resources/views/partials/entity-export-meta.blade.php +++ b/resources/views/partials/entity-export-meta.blade.php @@ -4,13 +4,13 @@ @endif @icon('star'){!! trans('entities.meta_created' . ($entity->createdBy ? '_name' : ''), [ - 'timeLength' => $entity->created_at->toDayDateTimeString(), + 'timeLength' => $entity->created_at->formatLocalized('%e %B %Y %H:%M:%S'), 'user' => e($entity->createdBy->name ?? ''), ]) !!}
@icon('edit'){!! trans('entities.meta_updated' . ($entity->updatedBy ? '_name' : ''), [ - 'timeLength' => $entity->updated_at->toDayDateTimeString(), + 'timeLength' => $entity->updated_at->formatLocalized('%e %B %Y %H:%M:%S'), 'user' => e($entity->updatedBy->name ?? '') ]) !!} \ No newline at end of file