@if (!$showall3) @endif
Sales Performance Report
Period : {{ $period }}
Group by : {{ $groupname }}, {{ $groupname2 }}, {{ $groupname3 }}
{{ $groupname }} : {{ $group }}
{{ $groupname2 }} : {{ $group2 }}
@if ($show_onhand) @endif @php $total_qty = 0; $total_gross = 0; $total_disc = 0; $total_nett = 0; @endphp @if ($show_onhand) @php $total_onhand = 0; @endphp @endif @foreach ($data_group3 as $item) @if ($show_onhand) @php $total_onhand += $item->onhand; @endphp @endif @php $total_qty += $item->qty; $total_gross += $item->gross; $total_disc += $item->disc; $total_nett += $item->nett; @endphp @endforeach @if ($show_onhand) @endif
{{ __('Warehouse') }} {{ $groupname }} {{ $groupname2 }} {{ $groupname3 }} {{ __('Qty') }} {{ __('Gross') }} {{ __('Disc') }} {{ __('Nett') }}{{ __('OnHand') }}
{{ $item->whs }} {{ $item->group }} {{ $item->group2 }} {{ $item->group3 }} {{ $item->qty }} {{ $item->gross }} {{ $item->disc }} {{ $item->nett }}{{ $item->nett }}
Total {{ $total_qty }} {{ $total_gross }} {{ $total_disc }} {{ $total_nett }}{{ $total_onhand }}