@extends('emails/layouts/default') @section('content')

There are {{ $count }} items that are below minimum inventory or will soon be low.

@for($i=0; $count > $i; $i++) @endfor
Name Type Current QTY Min QTY
{{ $data[$i]['name'] }} {{ $data[$i]['type'] }} {{ $data[$i]['remaining'] }} {{ $data[$i]['min_amt'] }}
@stop