{{ __('IT Request Detail No. ') }} {{ $no->no }}
{{ __('Date : ') }} {{ $no->date }}
{{ __('Remark : ') }} {{ $no->comments }}
| # | {{ __('Code') }} | {{ __('Barcode') }} | {{ __('Name') }} | {{ __('Qty Send') }} | {{ __('Qty Receive') }} |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $detail->code }} | {{ $detail->barcode }} | {{ $detail->name }} | {{ number_format($detail->qty) }} | @if ($no->sign == 'N') @else {{ $detail->qty_receive }} @endif |
| # | {{ __('Total Qty') }} | {{ __('Total Qty Receive') }} | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Total | {{ number_format($details->sum('qty'), 0, ',', ',') }} | @php $totalQty = array_sum(array_map('floatval', $quantities)); @endphp {{ number_format($totalQty, 0, ',', ',') }} | ||||||||