{{ __('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
{{ $item->code }} {{ $item->barcode }} {{ $item->name }} {{ number_format($item->qty) }} {{ number_format($item->gross) }} {{ number_format($item->disc) }} {{ number_format($item->nett) }}
Total {{ number_format($total_qty) }} {{ number_format($total_gross) }} {{ number_format($total_disc) }} {{ number_format($total_nett) }}
@if ($datadetail)
{{ $datadetail->links('vendor.livewire.bootstrap') }}
@endif