@extends('layouts.master-vnext') @section('page-title') 'Movements' vs 'Sales': {{ $group->category->name }} | {{ $group->name }} @endsection @section('content')

Movements

@foreach($movementsByProduct as $group) @endforeach
Product Qty Total
'#movements_tab', 'good' => $group->id, 'filterFrom' => Request::get("filterFrom"), 'filterTo' => Request::get("filterTo")]) }}"> {{ $group->name }} {{ $group->quantity }} @currency($group->total) {{ $defaultCurrency->symbol }}
Total: @currency($movementsByProduct->sum('total')) {{ $defaultCurrency->symbol }}

Sales

@foreach($guestSalesByProduct as $group) @endforeach
Product Qty Total
$group["id"], 'bookingTypes' => ['Pre booked', 'Walk in', 'WA'], 'division' => $division->id, 'filterFrom' => Request::get("filterFrom"), 'filterTo' => Request::get("filterTo") ]) }}"> {{ $group->name }} {{ $group->quantity }} @currency($group->total) {{ $defaultCurrency->symbol }}
Total: @currency($guestSalesByProduct->sum('total')) {{ $defaultCurrency->symbol }}

Sales (VIP)

@foreach($vipSalesByProduct as $group) @endforeach
Product Qty Total
$group["id"], 'bookingTypes' => ['VIP'], 'division' => $division->id, 'filterFrom' => Request::get("filterFrom"), 'filterTo' => Request::get("filterTo") ]) }}"> {{ $group->name }} {{ $group->quantity }} @currency($group->total) {{ $defaultCurrency->symbol }}
Total: @currency($vipSalesByProduct->sum('total')) {{ $defaultCurrency->symbol }}

Sales (Company)

@foreach($companySalesByProduct as $group) @endforeach
Group Qty Total
$group["id"], 'bookingTypes' => ['Company'], 'division' => $division->id, 'filterFrom' => Request::get("filterFrom"), 'filterTo' => Request::get("filterTo") ]) }}"> {{ $group->name }} {{ $group->quantity }} @currency($group->total) {{ $defaultCurrency->symbol }}
Total: @currency($companySalesByProduct->sum('total')) {{ $defaultCurrency->symbol }}
@endsection