@extends('layout.default') @section('title', 'Shopping list') @section('activeNav', 'shoppinglist') @section('viewJsName', 'shoppinglist') @section('content')

Shopping list  Add  Add products that are below defined min. stock amount

@foreach($listItems as $listItem) @endforeach
# Product / Note Amount
@if(!empty($listItem->product_id)) {{ FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->name }}
@endif{{ $listItem->note }}
{{ $listItem->amount + $listItem->amount_autoadded }} @if(!empty($listItem->product_id)) {{ FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name }}@endif
@stop