Detail Invoice
Warehouse : {{ $whs }}
{{ $jenis }} No : {{ $no }}
@php $total_qty = 0; $total_gross = 0; $total_disc = 0; $total_nett = 0; @endphp @foreach ($datadetail as $item) @php $total_qty += $item->qty; $total_gross += $item->gross; $total_disc += $item->disc; $total_nett += $item->nett; @endphp @endforeach
{{ __('ItemCode') }} {{ __('CodeBars') }} {{ __('ItemName') }} {{ __('Qty') }} {{ __('Gross') }} {{ __('Disc') }} {{ __('Nett') }}
{{ $item->code }} {{ $item->barcode }} {{ $item->name }} {{ $item->qty }} {{ $item->gross }} {{ $item->disc }} {{ $item->nett }}
Total {{ $total_qty }} {{ $total_gross }} {{ $total_disc }} {{ $total_nett }}