mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
ea54f540de
Signed-off-by: snipe <snipe@snipe.net>
22 lines
795 B
PHP
22 lines
795 B
PHP
@component('mail::message')
|
|
# {{ trans('mail.hello') }},
|
|
|
|
{{ trans('general.due_to_checkin', array('count' => $assets->count())) }}
|
|
|
|
@component('mail::table')
|
|
| {{ trans('general.assets') }} | {{ trans('general.checked_out_to') }} | {{ trans('general.expected_checkin') }} |
|
|
| ------------- | ------------- | ------------- |
|
|
@foreach ($assets as $asset)
|
|
@php
|
|
$checkin = Helper::getFormattedDateObject($asset->expected_checkin, 'date');
|
|
@endphp
|
|
| [{{ $asset->present()->name }}]({{ route('hardware.show', ['hardware' => $asset->id]) }}) | [{{ $asset->assigned->present()->fullName }}]({{ route($asset->targetShowRoute().'.show', [$asset->assigned->id]) }}) | {{ $checkin['formatted'] }}
|
|
@endforeach
|
|
@endcomponent
|
|
|
|
{{ trans('mail.best_regards') }}
|
|
|
|
{{ $snipeSettings->site_name }}
|
|
|
|
@endcomponent
|