@extends('layouts.master-vnext') @section('page-title') 'Office' vs 'Stock' - Product @endsection @section('content')

Stock expenses office

@foreach($expensesByCategory as $category) @endforeach
Product Total
{{ $category->name }} @currency($category->total) {{ $defaultCurrency->symbol }}
Total: @currency($expensesByCategory->sum('total')) {{ $defaultCurrency->symbol }}

Expenses Stock Team

@foreach($purchasesByCategory as $category) @endforeach
Product Total
{{ $category->name }} @currency($category->total) {{ $defaultCurrency->symbol }}
Total: @currency($purchasesByCategory->sum('total')) {{ $defaultCurrency->symbol }}
@endsection