Skip to content

Commit 30c4e9d

Browse files
committed
Use formatter for created_at on unaccepted assets
Signed-off-by: snipe <[email protected]>
1 parent 27fc30a commit 30c4e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/reports/unaccepted_assets.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class="table table-striped snipe-table"
6868
@foreach ($assetsForReport as $item)
6969
@if ($item['assetItem'])
7070
<tr @if($item['acceptance']->trashed()) style="text-decoration: line-through" @endif>
71-
<td>{{ $item['acceptance']->created_at }}</td>
71+
<td>{{ Helper::getFormattedDateObject($item['acceptance']->created_at, 'datetime', false) }}</td>
7272
<td>{{ ($item['assetItem']->company) ? $item['assetItem']->company->name : '' }}</td>
7373
<td>{!! $item['assetItem']->model->category->present()->nameUrl() !!}</td>
7474
<td>{!! $item['assetItem']->present()->modelUrl() !!}</td>

0 commit comments

Comments
 (0)