diff --git a/app/views/emails/checkin-asset.blade.php b/app/views/emails/checkin-asset.blade.php new file mode 100644 index 0000000000..07b3f01e5c --- /dev/null +++ b/app/views/emails/checkin-asset.blade.php @@ -0,0 +1,49 @@ +@extends('emails/layouts/default') + +@section('content') +

Hello {{{ $first_name }}},

+ + +

The following item has been checkin. + + + + + + + @if ($item_tag) + + + + + @endif + + + + + @if ($note) + + + + + @endif +
+ Asset Name: + + {{{ $item_name }}} +
+ Asset Tag: + + {{{ $item_tag }}} +
+ Checkin Date: + + {{{ $checkin_date }}} +
+ Additional Notes: + + {{{ $note }}} +
+ +

{{{ Setting::getSettings()->site_name }}}

+@stop