Merge pull request #11597 from snipe/fixes/missed_date_formatting_on_print

Fixed date format for Current Date output on location print assigned
This commit is contained in:
snipe 2022-08-01 18:48:41 -07:00 committed by GitHub
commit 9c6c01bab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@
@if ($manager)
<b>{{ trans('admin/locations/general.manager') }}</b> {{ $manager->present()->fullName() }}<br>
@endif
<b>{{ trans('admin/locations/general.date') }}</b> {{ date("d/m/Y h:i:s A") }}<br><br>
<b>{{ trans('admin/locations/general.date') }}</b> {{ \App\Helpers\Helper::getFormattedDateObject(now(), 'datetime', false) }}<br><br>
@if ($users->count() > 0)
@php