{{ $brand }} Sales Report
Period : {{ $period }}
@php $total_qty = 0; $total_gross = 0; $total_disc = 0; $total_nett = 0; @endphp @foreach ($data as $item) @php $total_qty += $item->qty; $total_gross += $item->gross; $total_disc += $item->disc; $total_nett += $item->nett; @endphp @endforeach
{{ __('Company') }} {{ __('Store') }} {{ __('Date') }} {{ __('ItemCode') }} {{ __('CodeBars') }} {{ __('ItemName') }} {{ __('Qty') }} {{ __('Gross') }} {{ __('Disc') }} {{ __('Nett') }}
{{ $item->company }} {{ $item->whs }} {{ \Carbon\Carbon::parse($item->date)->format('d/m/Y') }} {{ $item->code }} {{ $item->barcode }} {{ $item->name }} {{ $item->qty }} {{ $item->gross }} {{ $item->disc }} {{ $item->nett }}
Total {{ $total_qty }} {{ $total_gross }} {{ $total_disc }} {{ $total_nett }}