2016-03-25 01:18:05 -07:00
|
|
|
@extends('emails/layouts/default')
|
|
|
|
|
|
|
|
@section('content')
|
2016-09-26 14:13:07 -07:00
|
|
|
<p>{{ trans('mail.hello') }} {{ $first_name }},</p>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
2016-09-26 14:13:07 -07:00
|
|
|
<p>{{ trans('mail.the_following_item') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td style="background-color:#ccc">
|
2016-09-26 14:13:07 -07:00
|
|
|
{{ trans('mail.asset_name') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<strong>{{ $item_name }}</strong>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@if ($item_tag)
|
|
|
|
<tr>
|
|
|
|
<td style="background-color:#ccc">
|
2016-09-26 14:13:07 -07:00
|
|
|
{{ trans('mail.asset_tag') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<strong>{{ $item_tag }}</strong>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
<tr>
|
|
|
|
<td style="background-color:#ccc">
|
2016-09-26 14:13:07 -07:00
|
|
|
{{ trans('mail.checkin_date') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<strong>{{ $checkin_date }}</strong>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@if ($note)
|
|
|
|
<tr>
|
|
|
|
<td style="background-color:#ccc">
|
2016-09-26 14:13:07 -07:00
|
|
|
{{ trans('mail.additional_notes') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<strong>{{ $note }}</strong>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<p>{{ \App\Models\Setting::getSettings()->site_name }}</p>
|
|
|
|
@stop
|