Calculated Total:
@cMoney($award->getTotalCandidatesAmount(), $award->currency, true)
Manual Total:
@cMoney($award->amount, $award->currency, true)
Invoiced: @cMoney(($totalInvoicedAmount = $award->getTotalInvoicedAmount()), $award->currency, true)
Paid: @cMoney(($totalPaidAmount = $award->getTotalPaidAmount()) ?? 0, $award->currency, true)
Due: @cMoney($totalInvoicedAmount - $totalPaidAmount , $award->currency, true)