mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -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
22 lines
680 B
PHP
22 lines
680 B
PHP
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
|
|
<p>{{ trans_choice('mail.There_are',$count) }} {{ $count }} {{ trans_choice('mail.assets_warrantee_expiring',$count) }}</p>
|
|
|
|
<table style="border: 1px solid black; padding: 5px;" width="100%" cellspacing="0" cellpadding="3">
|
|
<tr>
|
|
<td><strong>{{ trans('mail.name') }}</strong></td>
|
|
<td><strong>{{ trans('mail.tag') }}</strong></td>
|
|
<td><strong>{{ trans('mail.expires') }}</strong></td>
|
|
<td><strong>{{ trans('mail.Days') }}</strong></td>
|
|
<td><strong>{{ trans('mail.supplier') }}</strong></td>
|
|
<td><strong>{{ trans('mail.assigned_to') }}</strong></td>
|
|
</tr>
|
|
|
|
{!! $email_content !!}
|
|
</table>
|
|
|
|
|
|
@stop
|