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

@yield('title')  {{ $L('Add') }}  {{ $L('Add products that are below defined min. stock amount') }}

@foreach($listItems as $listItem) @endforeach
# {{ $L('Product') }} / {{ $L('Note') }} {{ $L('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
@include('components.calendarcard')
@stop