{{ __('Report Sales Performance UDF - Level III') }}

@if ($issearchgroup3)
@endif

Period

:

@if ($from_date == $to_date) {{ date('j F Y', strtotime($from_date)) }} @else {{ date('j F Y', strtotime($from_date)) }} - {{ date('j F Y', strtotime($to_date)) }} @endif

Group by

:

@if ($resume_group == '') @else @endif @if ($resume_group2 == '') @else @endif @if ($resume_group3 == '') @else @endif @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) @endif @php $total_qty += $item->qty; $total_gross += $item->gross; $total_disc += $item->disc; $total_nett += $item->nett; @endphp @if ($show_onhand) @php $total_onhand += $item->onhand; @endphp @endif @endforeach @if ($show_onhand) @endif
{{ __('Warehouse') }}
{{ $item->whs }} {{ $item->group }} {{ $item->group2 }} {{ $item->group3 }} {{ number_format($item->qty) }} {{ number_format($item->gross) }} {{ number_format($item->disc) }} {{ number_format($item->nett) }}{{ number_format($item->onhand) }}
Total {{ number_format($total_qty) }} {{ number_format($total_gross) }} {{ number_format($total_disc) }} {{ number_format($total_nett) }}{{ number_format($total_onhand) }}
{{ $data_group3->links('vendor.livewire.bootstrap') }}