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
:
| {{ __('Warehouse') }} | @if ($resume_group == '')
|
@else
|
@endif
@if ($resume_group2 == '')
|
@else
|
@endif
|
|
|
|
@if ($show_onhand)
|
@endif
|
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->whs }} | {{ $item->group }} | {{ $item->group2 }} | {{ number_format($item->qty) }} | {{ number_format($item->gross) }} | {{ number_format($item->disc) }} | {{ number_format($item->nett) }} | @if ($show_onhand){{ number_format($item->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|||
| Total | {{ number_format($total_qty) }} | {{ number_format($total_gross) }} | {{ number_format($total_disc) }} | {{ number_format($total_nett) }} | @if ($show_onhand){{ number_format($total_onhand) }} | @endif|||||