@extends('admin.layout') @section('title', 'Laporan Pengendalian Persediaan') @section('content')
| Produk | Kategori | Stok Saat Ini | Min (ROP) | Max | Reorder Qty | Status |
|---|---|---|---|---|---|---|
| {{ $row['product']->name }} | {{ $row['product']->category->name ?? '-' }} | {{ $row['total_stock'] }} | {{ $row['reorder_point'] }} | {{ $row['max_stock'] }} | {{ $row['reorder_quantity'] }} | @if($row['status'] === 'low') {{ $row['status_label'] }} @elseif($row['status'] === 'over') {{ $row['status_label'] }} @else {{ $row['status_label'] }} @endif |