@extends('layouts.master-vnext')
@section('page-title')
Sales
@endsection
@section('content')
@include('dashboard.sales.name-total', [
'title' => 'In house',
'items' => $inHouse,
'itemColumnHeader' => 'Category',
'currency' => $defaultCurrency,
'idFieldName' => 'categoryId',
'controllerAndAction' => "Dashboard\SalesController@group",
'actionParams' => ['idFieldName' => 'categoryId', 'bookingTypes' => $bookingTypes, 'division' => $divisionId, 'filterFrom' => $filterFrom->toIso8601String(), 'filterTo' => $filterTo->toIso8601String()]
])
@include('dashboard.sales.name-total', [
'title' => 'Walk in cash',
'items' => $cash,
'itemColumnHeader' => 'Category',
'idFieldName' => 'categoryId',
'currency' => $defaultCurrency,
'controllerAndAction' => "Dashboard\SalesController@group",
'actionParams' => ['idFieldName' => 'categoryId', 'bookingTypes' => $bookingTypes, 'division' => $divisionId, 'filterFrom' => $filterFrom->toIso8601String(), 'filterTo' => $filterTo->toIso8601String()]
])
@include('dashboard.sales.name-total', [
'title' => 'Andy Li',
'items' => $andyLi,
'itemColumnHeader' => 'Category',
'idFieldName' => 'categoryId',
'currency' => $defaultCurrency,
'controllerAndAction' => "Dashboard\SalesController@group",
'actionParams' => ['idFieldName' => 'categoryId', 'bookingTypes' => $bookingTypes, 'division' => $divisionId, 'filterFrom' => $filterFrom->toIso8601String(), 'filterTo' => $filterTo->toIso8601String()]
])
@include('dashboard.sales.name-total', [
'title' => 'VIP',
'items' => $vip,
'itemColumnHeader' => 'Category',
'idFieldName' => 'categoryId',
'currency' => $defaultCurrency,
'controllerAndAction' => "Dashboard\SalesController@group",
'actionParams' => ['idFieldName' => 'categoryId', 'bookingTypes' => $bookingTypes, 'division' => $divisionId, 'filterFrom' => $filterFrom->toIso8601String(), 'filterTo' => $filterTo->toIso8601String()]
])
@include('dashboard.sales.name-total', [
'title' => 'Company',
'items' => $company,
'itemColumnHeader' => 'Category',
'idFieldName' => 'categoryId',
'currency' => $defaultCurrency,
'controllerAndAction' => "Dashboard\SalesController@group",
'actionParams' => ['idFieldName' => 'categoryId', 'bookingTypes' => $bookingTypes, 'division' => $divisionId, 'filterFrom' => $filterFrom->toIso8601String(), 'filterTo' => $filterTo->toIso8601String()]
])
@endsection