Revenue

@foreach($this->revenueAccounts as $account)
{{ $account->code }} - {{ $account->name }} {{ number_format($account->balance, 2, ',', '.') }}
@endforeach
Total Revenue {{ number_format($this->totalRevenue, 2, ',', '.') }}

Expenses

@foreach($this->expenseAccounts as $account)
{{ $account->code }} - {{ $account->name }} {{ number_format($account->balance, 2, ',', '.') }}
@endforeach
Total Expenses {{ number_format($this->totalExpense, 2, ',', '.') }}
Net Income {{ number_format($this->netIncome, 2, ',', '.') }}