@extends('layouts.app') @section('main-content')

Low Inventory

Low Stock
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@forelse($inventories as $inventory) @if($inventory->onhand < $inventory->threshold) @endif @empty @endforelse
# PRODUCTS MIN LEVEL ONHAND MOQ PURCHASE
1 {{ $inventory->name }}

{{ $inventory->description }}

{{ $inventory->threshold }} {{ $inventory->onhand }} {{ $inventory->threshold - $inventory->onhand }} {{ date('Y-m-d', strtotime($lastPurchase[$inventory->product_id]['created_at'])) }}
Record not found
@endsection