@extends('layouts.app') @push('css') @endpush @section('content')

{{ $title }}

@if($data_stock_opname->image)

Gambar Stock Opname
@endif

Produk yang Diperiksa

@foreach ($data_products as $product) @php $detail = $data_stock_opname->stockOpnameDetails->firstWhere('product_id', $product->id); @endphp @endforeach
Nama Produk Stock Sistem Stock Real Selisih Keterangan
{{ $product->name }} {{ $product->stock }} {{ $detail ? $detail->physical_stock : '0' }} {{ $detail ? $detail->difference : '0' }} {{ $detail ? $detail->description_detail : '-' }}
Cetak Kembali
@endsection @push('script') @endpush