Assets
@foreach($this->assets as $account)
{{ $account->code }} - {{ $account->name }}
{{ number_format($account->balance, 2, ',', '.') }}
@endforeach
Total Assets
{{ number_format($this->totalAssets, 2, ',', '.') }}
Liabilities
@foreach($this->liabilities as $account)
{{ $account->code }} - {{ $account->name }}
{{ number_format($account->balance, 2, ',', '.') }}
@endforeach
Total Liabilities
{{ number_format($this->totalLiabilities, 2, ',', '.') }}
Equity
@foreach($this->equities as $account)
{{ $account->code }} - {{ $account->name }}
{{ number_format($account->balance, 2, ',', '.') }}
@endforeach
Total Equity
{{ number_format($this->totalEquities, 2, ',', '.') }}
Liabilities + Equity
{{ number_format($this->totalLiabilities + $this->totalEquities, 2, ',', '.') }}