@extends('layouts.admin') @section('title', 'Low Stock Items') @section('page_title', 'Low Stock Items') @section('content')
| Product | SKU | Category | Current Stock | Location | Actions |
|---|---|---|---|---|---|
| {{ $item->product->name ?? 'Unknown Product' }} |
{{ $item->product->sku ?? 'N/A' }}
|
@if($item->product && $item->product->category) {{ $item->product->category->name }} @else N/A @endif | {{ $item->quantity }} units | {{ $item->location ?? 'Not specified' }} | Update Stock |