mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
31 lines
769 B
PHP
31 lines
769 B
PHP
@extends('emails/layouts/default')
|
|
|
|
@section('content')
|
|
|
|
<p>There are {{ $count }} items that are below minimum inventory or will soon be low.</p>
|
|
|
|
|
|
<table style="border: 1px solid black; padding: 5px;" width="100%" cellspacing="0" cellpadding="3">
|
|
<tr>
|
|
<td><strong>Name</strong></td>
|
|
<td><strong>Type</strong></td>
|
|
<td><strong>Current QTY</strong></td>
|
|
<td><strong>Min QTY</strong></td>
|
|
</tr>
|
|
|
|
@for($i=0; $count > $i; $i++)
|
|
<tr>
|
|
<td><a href="{{ config('app.url') }}/admin/{{ $data[$i]['type'] }}/{{ $data[$i]['id'] }}/view">{{ $data[$i]['name'] }}</a></td>
|
|
<td>{{ $data[$i]['type'] }}</td>
|
|
<td>{{ $data[$i]['remaining'] }}</td>
|
|
<td>{{ $data[$i]['min_amt'] }}</td>
|
|
</tr>
|
|
|
|
@endfor
|
|
|
|
|
|
</table>
|
|
|
|
|
|
@stop
|