{{ t('paystack_payment') ?? 'Paystack Payment' }}

{{ t('paystack_payment') ?? 'Paystack Payment' }}

{{ t('complete_payment_paystack') ?? 'Complete your payment with Paystack' }}

{{ t('invoice_details') ?? 'Invoice Details' }}

{{ $invoice->formattedTotal() }}
{{ t('invoice_number') ?? 'Invoice Number' }}
{{ $invoice->invoice_number ?? format_draft_invoice_number() }}
{{ t('description') ?? 'Description' }}
{{ $invoice->title }}
{{ t('subtotal') ?? 'Subtotal' }}
{{ $invoice->formatAmount($invoice->subTotal()) }}
@if($invoice->getTax() > 0)
{{ t('tax') ?? 'Tax' }}
{{ $invoice->formatAmount($invoice->getTax()) }}
@endif @if($remainingCredit > 0)
{{ t('credit_applied') ?? 'Credit Applied' }}
-{{ $currencySymbol }}{{ number_format($remainingCredit, 2) }}
@endif @if ($invoice->hasCoupon())
{{ t('coupon_discount') }} ({{ $invoice->coupon_code }})
@php // Show the actual coupon discount applied after credit deduction $creditAmount = $remainingCredit > 0 ? min($remainingCredit, $invoice->total()) : 0; $displayCouponAmount = $invoice->getCouponDiscountAfterCredit($creditAmount); @endphp -{{ $invoice->formatAmount($displayCouponAmount) }}
@endif
{{ t('total') ?? 'Total' }}
@if($finalAmount > 0) {{ $currencySymbol }}{{ number_format($finalAmount, 2) }} {{ $currency }} @else {{ t('paid_with_credit') ?? 'Paid with Credit' }} @endif
@include('partials.coupon-form', ['invoice' => $invoice])

{{ t('payment_information') ?? 'Payment Information' }}

{{ t('paystack_accepts') ?? 'Paystack accepts:' }}

{{ $gateway->getShortDescription() }}

@if($finalAmount > 0) @php $user = getUserByTenantId($invoice->tenant_id); @endphp

{{ t('secure_payment_paystack') ?? 'Your payment is secured by Paystack' }}

{{ t('minimum_amount') ?? 'Minimum amount' }}: {{ $currencySymbol }}{{ $minimumAmount }} {{ $currency }}

@else

{{ t('invoice_paid_with_credit') ?? 'Invoice paid with credit balance' }}

{{ t('no_payment_required') ?? 'No additional payment required.' }}

@endif

{{ t('secure_payment') ?? 'Secure Payment' }}

{{ t('paystack_security_notice') ?? 'Your payment information is processed securely by Paystack. We do not store your card details.' }}

@push('scripts') @endpush