@extends('layouts.app') @section('content')
| Barcode | Product Name | System Qty | Count Qty | Variance | Update Qty | Type |
|---|---|---|---|---|---|---|
| {{ $item->product->product_barcode }} | {{ $item->product->product_name }} | {{ number_format($item->scl_system_qty, 3) }} | @if($item->scl_count_qty > 0) @php $variance = $item->scl_count_qty - $item->scl_system_qty; @endphp {{ number_format($variance, 3) }} @endif | @if($item->scl_details_update_qty > 0) {{ number_format($item->scl_details_update_qty, 3) }} @endif | @if($item->scl_count_qty > 0) {{ $item->scl_details_in_out == 1 ? 'IN' : 'OUT' }} @endif |