mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
20 lines
379 B
PHP
Executable file
20 lines
379 B
PHP
Executable file
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
|
|
<p>There are {{ $count }} license(s) expiring next 60 days.</p>
|
|
|
|
|
|
<table style="border: 1px solid black; padding: 5px;" width="100%" cellspacing="0" cellpadding="3">
|
|
<tr>
|
|
<td><strong>Name</strong></td>
|
|
<td><strong>Expires</strong></td>
|
|
<td><strong>Days</strong></td>
|
|
</tr>
|
|
|
|
{!! $email_content !!}
|
|
</table>
|
|
|
|
|
|
@stop
|