checkin/out info on side bar

This commit is contained in:
akemidx 2023-05-17 13:17:48 -04:00
parent 0f76eda4af
commit deca80ba71
2 changed files with 9 additions and 1 deletions

View file

@ -934,6 +934,14 @@
{{ $asset->location->state }} {{ $asset->location->zip }} {{ $asset->location->state }} {{ $asset->location->zip }}
</li> </li>
@endif @endif
<li>
<i class="fas fa-calendar"></i> {{ trans('admin/hardware/form.checkout_date') }}: {{ Helper::getFormattedDateObject($asset->last_checkout, 'date', false) }}
</li>
@if (isset($asset->expected_checkin))
<li>
<i class="fas fa-calendar"></i> {{ trans('admin/hardware/form.expected_checkin') }}: {{ Helper::getFormattedDateObject($asset->expected_checkin, 'date', false) }}
</li>
@endif
</ul> </ul>
@endif @endif