mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 06:59:41 -08:00
40f00665b3
* commit temporal * final translation commit -- added email translations * final translation commit -- removed file for spanish translations * final translation commit -- removed file for spanish translations * added missing translations * method overrided and config files back to default * config files back to default * config files back to default
50 lines
878 B
PHP
50 lines
878 B
PHP
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
<p>{{ trans('mail.hello') }} {{ $first_name }},</p>
|
|
|
|
|
|
<p>{{ trans('mail.the_following_item') }}
|
|
|
|
<table>
|
|
<tr>
|
|
<td style="background-color:#ccc">
|
|
{{ trans('mail.asset_name') }}
|
|
</td>
|
|
<td>
|
|
<strong>{{ $item_name }}</strong>
|
|
</td>
|
|
</tr>
|
|
@if ($item_tag)
|
|
<tr>
|
|
<td style="background-color:#ccc">
|
|
{{ trans('mail.asset_tag') }}
|
|
</td>
|
|
<td>
|
|
<strong>{{ $item_tag }}</strong>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
<tr>
|
|
<td style="background-color:#ccc">
|
|
{{ trans('mail.checkin_date') }}
|
|
</td>
|
|
<td>
|
|
<strong>{{ $checkin_date }}</strong>
|
|
</td>
|
|
</tr>
|
|
@if ($note)
|
|
<tr>
|
|
<td style="background-color:#ccc">
|
|
{{ trans('mail.additional_notes') }}
|
|
</td>
|
|
<td>
|
|
<strong>{{ $note }}</strong>
|
|
</td>
|
|
</tr>
|
|
@endif
|
|
</table>
|
|
|
|
<p>{{ \App\Models\Setting::getSettings()->site_name }}</p>
|
|
@stop
|