2018-07-18 19:15:45 -07:00
|
|
|
@component('mail::message')
|
|
|
|
|
|
|
|
{{ trans_choice('mail.low_inventory_alert',count($items)) }}
|
|
|
|
|
|
|
|
@component('mail::table')
|
|
|
|
|{{ trans('mail.name') }} |{{ trans('mail.type') }} |{{ trans('mail.current_QTY') }}|{{ trans('mail.min_QTY') }}
|
|
|
|
|:-------------|:---------|:---------:|:---------:|
|
|
|
|
@for($i=0; count($items) > $i; $i++)
|
2018-10-11 15:31:10 -07:00
|
|
|
|<a href="{{ route($items[$i]['type'].'.show', $items[$i]['id']) }}">{{ $items[$i]['name'] }}</a>|{{ $items[$i]['type'] }} |{{ $items[$i]['remaining'] }} |{{ $items[$i]['min_amt'] }} |
|
2018-07-18 19:15:45 -07:00
|
|
|
@endfor
|
|
|
|
@endcomponent
|
|
|
|
|
|
|
|
|
|
|
|
@endcomponent
|