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

Low Inventory Report

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
# Product Min Level Onhand Last Re-stock
1 {{ $inventory->name }}

{{ $inventory->description }}

{{ $inventory->threshold }} {{ $inventory->onhand }} {{ $inventory->created_at}}
Record not found
@endsection