IT Request Out Detail Report
No : {{ $no }}
@php $total_qtysend = 0; $total_qtyreceive = 0; @endphp @foreach ($details as $item) @php $total_qtysend += $item->qty; $total_qtyreceive += $item->qty_receive; @endphp @endforeach
{{ __('ItemCode') }} {{ __('CodeBars') }} {{ __('ItemName') }} {{ __('Qty Send') }} {{ __('Qty Receive') }}
{{ $item->item_code }} {{ $item->item_barcode }} {{ $item->item_name }} {{ number_format($item->qty, 0, ',', '.') }} {{ number_format($item->qty_receive, 0) }}
Total {{ $total_qtysend }} {{ $total_qtyreceive }}