@extends('components.app-layout') @section('title', 'Inventory Alerts') @section('subtitle', 'Monitor stock levels and expiring items') @section('content')
Monitor inventory levels and take action on items that need attention
Low Stock
{{ $lowStockItems->total() }}
Out of Stock
{{ $outOfStockItems->total() }}
Expiring Soon
{{ $expiringItems->total() }}
Items below minimum stock level
{{ $item->category->name ?? 'No Category' }}
{{ $item->location }}
@endifItems with zero stock
{{ $item->category->name ?? 'No Category' }}
{{ $item->location }}
@endifItems expiring within 30 days
{{ $item->category->name ?? 'No Category' }}
No inventory alerts at this time. All items are well stocked and none are expiring soon.
Back to Dashboard