{{ __('Sales Performance Report') }}

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 ($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 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 }} {{ 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->links('vendor.livewire.bootstrap') }}