@extends('layouts.master-vnext')
@section('page-title')
'Office' vs 'Stock' - Product
@endsection
@section('content')
| Product |
Total |
@foreach($expensesByCategory as $category)
|
{{ $category->name }}
|
@currency($category->total) {{ $defaultCurrency->symbol }} |
@endforeach
|
Total: @currency($expensesByCategory->sum('total')) {{ $defaultCurrency->symbol }}
|
| Product |
Total |
@foreach($purchasesByCategory as $category)
|
{{ $category->name }}
|
@currency($category->total) {{ $defaultCurrency->symbol }} |
@endforeach
|
Total: @currency($purchasesByCategory->sum('total')) {{ $defaultCurrency->symbol }}
|
@endsection