{{ $storeSettings->store_name ?? config('app.name') }} System
Dicetak pada: {{ now()->format('d M Y, H:i') }} WIB
| No | Nama Produk | Kategori | Stok | Min | Selisih | Status | Nilai Stok | Prioritas |
|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $product->name }} | {{ $product->category->name ?? 'Tanpa Kategori' }} | {{ $product->stock }} | {{ $product->minimum_stock }} | {{ $difference >= 0 ? '+' : '' }}{{ $difference }} | @if($product->stock <= 0) Habis @elseif($product->stock <= $product->minimum_stock) Rendah @else Normal @endif | Rp {{ number_format($stockValue, 0, ',', '.') }} | @if($priority === 'Urgent') {{ $priority }} @elseif($priority === 'Tinggi') {{ $priority }} @else {{ $priority }} @endif |
| Tidak ada produk | ||||||||
{{ $summary['out_of_stock_products'] }} produk habis stok dan {{ $summary['low_stock_products'] }} produk stok rendah memerlukan perhatian segera.
Silakan lakukan restock untuk produk-produk tersebut untuk menghindari kehilangan penjualan.