@extends('layouts.master') @section('css') @endsection @section('title') Balance Sheet @endsection @section('content')
| Liabilities | Amount |
|---|---|
| {{ $group->name }} | {{ $numberFormat($group->amount) }} |
| Net Profit | {{ $numberFormat($netProfitOrLoss) }} |
| Difference in Opening Balance | {{ $numberFormat($openingBalanceDiff) }} |
| Assets | Amount |
|---|---|
| {{ $group->name }} | {{ $numberFormat($group->amount) }} |
| Net Loss | {{ $numberFormat($netProfitOrLoss) }} |
| Difference in Opening Balance | {{ $numberFormat($openingBalanceDiff) }} |
| Total | {{ $numberFormat($creditTotal) }} | Total | {{ $numberFormat($debitTotal) }} |
|---|