1. Choose plan
  2. Checkout
  3. 3Confirmation

{{ __('Payment') }} {{ __('successful') }}

@if (session('topup_credits'))

+{{ number_format(session('topup_credits')) }} {{ __('credits') }} added to your wallet. Package: {{ session('topup_package') }}. {{ __('View wallet →') }}

@else

{{ __('Your purchase is complete.') }} {{ __('Open wallet →') }}

@endif
{{ __('Receipt') }}
#INV-2403
{{ __('Paid on') }}
{{ __('Pro plan · Yearly') }}
{{ __('12 months · billed annually · auto-renews Apr 27, 2027') }}
@php $cur = $order?->currency ?? 'USD'; $subtotal = $order ? $order->amount - ($order->tax_amount ?? 0) + ($order->discount_amount ?? 0) : 0; $taxAmt = $order->tax_amount ?? 0; $taxPct = $order && $order->tax_rate ? rtrim(rtrim(number_format($order->tax_rate, 2), '0'), '.') : null; $total = $order?->amount ?? 0; $fmt = fn($n) => \App\Support\FormatSettings::formatIn($n, $cur); @endphp
{!! $fmt($total) !!}
{{ __('Subtotal') }}{!! $fmt($subtotal) !!}
@if ($taxAmt > 0)
Tax{{ $taxPct ? ' (' . $taxPct . '%)' : '' }}{!! $fmt($taxAmt) !!}
@endif
{{ __('Total paid') }} {!! $fmt($total) !!}
{{ __('Paid with Visa ···· 4242') }}