From de87b0395282a5ec48c289fc7dda80080703b939 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 5 Sep 2024 21:23:40 +1000 Subject: [PATCH] Minor fixes for invoice summaryu --- .../views/portal/ninja2020/flow2/invoices-summary.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php b/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php index d5c9cde79a0a..96d3252d0c83 100644 --- a/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php +++ b/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php @@ -33,7 +33,7 @@
{{ ctrans('texts.amount_due') }}
{{ $invoice->client->currency()->code }} ({{ $invoice->client->currency()->symbol }}) - {{ $invoice->partial > 0 ? $invoice->partial : $invoice->balance }} + {{ $invoice->partial > 0 ? \App\Utils\Number::formatValue($invoice->partial, $invoice->client->currency()) : \App\Utils\Number::formatValue($invoice->balance, $invoice->client->currency()) }}