{{ $storeSettings->store_name ?? config('app.name') }} System
Dicetak pada: {{ now()->format('d M Y, H:i') }} WIB
| No | Nama Produk | Barcode | Kategori | Stok | Harga Beli | Harga Jual | Nilai Stok | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $product->name }} | {{ $product->barcode }} | {{ $product->category->name ?? 'Tanpa Kategori' }} | {{ $product->stock }} | Rp {{ number_format($product->purchase_price, 0, ',', '.') }} | Rp {{ number_format($product->selling_price, 0, ',', '.') }} | Rp {{ number_format($product->stock * $product->selling_price, 0, ',', '.') }} | @if($product->stock <= 0) Habis @elseif($product->stock <= $product->minimum_stock) Rendah @else Normal @endif |
| Tidak ada produk | ||||||||