| Revenue from Contracts | {{ \App\Support\Format::mwk($revenue) }} |
| Cost of Sales | ({{ \App\Support\Format::plain($costs) }}) |
| Gross Profit | {{ \App\Support\Format::mwk($grossProfit) }} |
| Operating Expenses | ({{ \App\Support\Format::plain($opex) }}) |
| Net Profit | {{ \App\Support\Format::mwk($netProfit) }} |
| Assets | {{ \App\Support\Format::mwk($totalAssets) }} |
| {{ $a->asset_name }} | {{ \App\Support\Format::mwk($a->net_book_value) }} |
| Liabilities | {{ \App\Support\Format::mwk($totalLiab) }} |
| {{ $l->liability_name }} | {{ \App\Support\Format::mwk($l->outstanding_balance) }} |
| Equity | {{ \App\Support\Format::mwk($equity) }} |
| Code | Account | Type |
|---|---|---|
| {{ $a->account_code }} | {{ $a->account_name }} | {{ $a->account_type }} |
| Asset | Net Book Value |
|---|---|
| {{ $a->asset_name }} | {{ \App\Support\Format::mwk($a->net_book_value) }} |
| Total | {{ \App\Support\Format::mwk($totalAssets) }} |
| Liability | Outstanding |
|---|---|
| {{ $l->liability_name }} | {{ \App\Support\Format::mwk($l->outstanding_balance) }} |
| Total | {{ \App\Support\Format::mwk($totalLiab) }} |
| Project | Revenue | Cost | Profit | Margin |
|---|---|---|---|---|
| {{ $p->name }} | {{ \App\Support\Format::mwk($p->revenue) }} | {{ \App\Support\Format::mwk($p->cost) }} | {{ \App\Support\Format::mwk($p->profit, true) }} | {{ ($p->margin >= 0 ? '+' : '') . $p->margin }}% |