@extends('layouts.app') @section('main-content')
# | PRODUCTS | MIN LEVEL | ONHAND | MOQ | PURCHASE | @forelse($inventories as $inventory) @if($inventory->onhand < $inventory->threshold)
---|---|---|---|---|---|
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 |