Detail Stock Opname
@if($data_stock_opname->image)
@endif
Produk yang Diperiksa
| Nama Produk |
Stock Sistem |
Stock Real |
Selisih |
Keterangan |
@foreach ($data_products as $product)
@php
$detail = $data_stock_opname->stockOpnameDetails->firstWhere('product_id', $product->id);
@endphp
| {{ $product->name }} |
{{ $product->stock }} |
{{ $detail ? $detail->physical_stock : '0' }} |
{{ $detail ? $detail->difference : '0' }} |
{{ $detail ? $detail->description_detail : '-' }} |
@endforeach