mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
29 lines
723 B
PHP
29 lines
723 B
PHP
|
@component('mail::message')
|
||
|
# {{ trans('mail.hello') }} {{ $target->present()->fullName() }},
|
||
|
|
||
|
{{ trans('mail.the_following_item') }}
|
||
|
|
||
|
@component('mail::table')
|
||
|
| | |
|
||
|
| ------------- | ------------- |
|
||
|
| **{{ trans('mail.asset_name') }}** | {{ $item->name }} |
|
||
|
@if (isset($item->manufacturer))
|
||
|
| **{{ trans('general.manufacturer') }}** | {{ $item->manufacturer->name }} |
|
||
|
@endif
|
||
|
@if ($target->can('update', $item))
|
||
|
| **Key** | {{ $item->serial }} |
|
||
|
@endif
|
||
|
@if ($admin)
|
||
|
| **{{ trans('general.administrator') }}** | {{ $admin->present()->fullName() }} |
|
||
|
@endif
|
||
|
@if ($note)
|
||
|
| **{{ trans('mail.additional_notes') }}** | {{ $note }} |
|
||
|
@endif
|
||
|
@endcomponent
|
||
|
|
||
|
Thanks,
|
||
|
|
||
|
{{ $snipeSettings->site_name }}
|
||
|
|
||
|
@endcomponent
|