@extends('layouts.master-vnext')
@section('page-title')
'Movements' vs 'Sales' - by category
@endsection
@section('content')
| Category |
Total |
@foreach($movementsByCategory as $category)
|
{{ $category->name }}
|
@currency($category->total) {{ $defaultCurrency->symbol }} |
@endforeach
|
Total: @currency($movementsByCategory->sum('total')) {{ $defaultCurrency->symbol }}
|
| Category |
Total |
@foreach($guestSalesByCategory as $category)
|
{{ $category->category->name }}: {{ $category->name}}
|
@currency($category->total) {{ $defaultCurrency->symbol }} |
@endforeach
|
Total: @currency($guestSalesByCategory->sum('total')) {{ $defaultCurrency->symbol }}
|
| Category |
Total |
@foreach($vipSalesByCategory as $category)
|
{{ $category->category->name }}: {{ $category->name}}
|
@currency($category->total) {{ $defaultCurrency->symbol }} |
@endforeach
|
Total: @currency($vipSalesByCategory->sum('total')) {{ $defaultCurrency->symbol }}
|
| Category |
Total |
@foreach($companySalesByCategory as $category)
|
{{ $category->category->name }}: {{ $category->name}}
|
@currency($category->total) {{ $defaultCurrency->symbol }} |
@endforeach
|
Total: @currency($companySalesByCategory->sum('total')) {{ $defaultCurrency->symbol }}
|
@endsection