mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Replace deprecated function.
This commit is contained in:
@@ -37,11 +37,11 @@
|
||||
<td data-value="{{ user.email }}">
|
||||
<a href="{{ route('admin.users.show',user.id) }}">{{ user.email }}</a></td>
|
||||
<td class="hidden-xs" data-value="{{ user.created_at.format('Y-m-d H-i-s') }}">
|
||||
{{ user.created_at.formatLocalized(monthAndDayFormat) }}
|
||||
{{ user.created_at.isoFormat(monthAndDayFormat) }}
|
||||
{{ user.created_at.format('H:i') }}
|
||||
</td>
|
||||
<td class="hidden-xs" data-value="{{ user.updated_at.format('Y-m-d H-i-s') }}">
|
||||
{{ user.updated_at.formatLocalized(monthAndDayFormat) }}
|
||||
{{ user.updated_at.isoFormat(monthAndDayFormat) }}
|
||||
{{ user.updated_at.format('H:i') }}
|
||||
</td>
|
||||
<td class="hidden-xs" data-value="{% if user.isAdmin %}1{% else %}0{% endif %}">
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<tr>
|
||||
<td>{{ trans('list.created_at') }}</td>
|
||||
<td>
|
||||
{{ user.created_at.formatLocalized(monthAndDayFormat) }}
|
||||
{{ user.created_at.isoFormat(monthAndDayFormat) }}
|
||||
{{ user.created_at.format('H:i') }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user