📦 LAPORAN PRODUK

{{ $storeSettings->store_name ?? config('app.name') }} System

Dicetak pada: {{ now()->format('d M Y, H:i') }} WIB

RINGKASAN PRODUK

TOTAL PRODUK
{{ number_format($summary['total_products']) }}
NILAI STOK (BELI)
Rp {{ number_format($summary['total_stock_value'], 0, ',', '.') }}
NILAI STOK (JUAL)
Rp {{ number_format($summary['total_selling_value'], 0, ',', '.') }}
STOK RENDAH
{{ number_format($summary['low_stock_count']) }}

DAFTAR PRODUK

@forelse($products as $index => $product) @empty @endforelse
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