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