snipe-it/resources/views/emails/expiring-assets-report.blade.php
Andrés Núñez 40f00665b3 Translate emails (#2652)
* 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
2016-09-26 14:13:07 -07:00

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