mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
9daeeeb851
* Improved expiring licenses notification * Improved expiring assets notification * Nicee low inventory notification * Refactored stupid language strings * Oops * Use settings variable
15 lines
543 B
PHP
15 lines
543 B
PHP
@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++)
|
|
|<a href="({{ route($items[$i]['type'].'.show', $items[$i]['id']) }}">{{ $items[$i]['name'] }}</a>|{{ $items[$i]['type'] }} |{{ $items[$i]['remaining'] }} |{{ $items[$i]['min_amt'] }} |
|
|
@endfor
|
|
@endcomponent
|
|
|
|
|
|
@endcomponent
|