From c70e2abf8ab903f0cb9320644912e3877052c310 Mon Sep 17 00:00:00 2001 From: klittle81 <31577819+klittle81@users.noreply.github.com> Date: Fri, 27 Feb 2026 22:43:40 -0500 Subject: [PATCH] Apply suggestion from @klittle81 remove the
at end as its not needed --- resources/views/app/pdf/payment/payment.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/app/pdf/payment/payment.blade.php b/resources/views/app/pdf/payment/payment.blade.php index 7766971c..52dd5afd 100644 --- a/resources/views/app/pdf/payment/payment.blade.php +++ b/resources/views/app/pdf/payment/payment.blade.php @@ -358,7 +358,7 @@ {!! format_money_pdf($payment->amount, $payment->customer->currency) !!} @if ($payment->invoice && $payment->invoice->invoice_number)

Balance Due

- {!! $payment->invoice->formattedDueAmount !!}
+ {!! $payment->invoice->formattedDueAmount !!}

Invoice Status

{{ str_replace('_', ' ', optional($payment->invoice)->paid_status ?? optional($payment->invoice)->status) }} @endif