{{ __('IT Request Detail No. ') }} {{ $no->no }}
{{ __('Date : ') }} {{ $no->date }}
{{ __('Remark : ') }} {{ $no->comments }}
@foreach ($details as $key => $detail) @endforeach
# {{ __('Code') }} {{ __('Barcode') }} {{ __('Name') }} {{ __('Qty Send') }} {{ __('Qty Receive') }}
{{ $key + 1 }} {{ $detail->item_code }} {{ $detail->item_barcode }} {{ $detail->item_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, ',', ',') }}
{{--
--}}
{{-- --}}