LAPORAN STOK BARANG

Tanggal Cetak : {{ \Carbon\Carbon::now()->translatedFormat('d F Y') }}

@foreach ($barangs as $key => $item) @endforeach
No Kode Barang Nama Barang Stok Gudang 1 Stok Gudang 2 Total Stok Satuan Harga Pokok Nilai Total
{{ $key + 1 }} {{ $item->kode }} {{ $item->nama }} {{ number_format($item->lokasi_barang->stok_lokasi_1 ?? 0, 0, ',', '.') }} {{ number_format($item->lokasi_barang->stok_lokasi_2 ?? 0, 0, ',', '.') }} {{ number_format(($item->lokasi_barang->stok_lokasi_1 ?? 0) + ($item->lokasi_barang->stok_lokasi_2 ?? 0), 0, ',', '.') }} {{ $item->satuan }} {{ number_format($item->hpp, 0, ',', '.') }} {{ number_format((($item->lokasi_barang->stok_lokasi_1 ?? 0) + ($item->lokasi_barang->stok_lokasi_2 ?? 0)) * $item->hpp, 0, ',', '.') }}