{{ t('authenticate_recurring_payment') }} - {{ t('razorpay') }}

{{ t('authenticate_recurring_payment') }}

{{ t('authenticate_payment_description') }}

{{ t('rbi_authentication_notice') }}

{{ t('invoice_details') }}

{{ $invoice->formattedTotal() }}
{{ t('invoice_number') }}
{{ $invoice->invoice_number }}
{{ t('subscription') }}
{{ $invoice->subscription->plan->name ?? t('one_time_payment') }}
{{ t('date') }}
{{ $invoice->created_at->format('M d, Y') }}
{{ t('subtotal') }}
{{ $invoice->formatAmount($invoice->subTotal()) }}
@php $taxDetails = $invoice->getTaxDetails(); @endphp @if (count($taxDetails) > 0) @foreach ($taxDetails as $tax)
{{ $tax['name'] }} ({{ $tax['formatted_rate'] }})
@php $taxAmount = $tax['amount']; if ($taxAmount <= 0 && $tax['rate']> 0) { $taxAmount = $invoice->subTotal() * ($tax['rate'] / 100); } echo $invoice->formatAmount($taxAmount); @endphp
@endforeach @endif @if ($invoice->fee > 0)
{{ t('fee') }}
{{ $invoice->formatAmount($invoice->fee) }}
@endif
{{ t('total_amount') }}
@php $total = $invoice->total(); @endphp {{ $invoice->formattedTotal() }}
@if ($remainingCredit > 0)
{{ t('total_credit_remaining') }}
@php echo '-' . $invoice->formatAmount($remainingCredit); @endphp
{{ t('final_payable_amount') }}
@php $creditAmount = min($remainingCredit, $total); $finalamount = $invoice->finalPayableAmount($creditAmount); echo $invoice->formatAmount($finalamount); @endphp
@endif

{{ t('payment_authentication') }}

{{ t('razorpay_authenticate_description') }}

@push('scripts') @endpush