@extends('layouts.billing') @section('title', __('billing.PaymentVerification')) @section('content')
{{-- Verifying state: shown until webhook confirms --}}
{{ __('billing.Verifying') }}

{{ __('billing.VerifyingPayment') }}

{{ __('billing.VerifyingPaymentDescription') }}

{{-- Confirmed state: shown after webhook marks payment as paid --}}

{{ __('billing.PaymentConfirmed') }}

{{ __('billing.PaymentConfirmedDescription') }}

{{-- Failed state: shown if webhook marks payment as failed --}}

{{ __('billing.PaymentFailed') }}

{{ __('billing.PaymentFailedDescription') }}

{{ __('billing.Invoice') }} {{ $payment->invoice_number }}
{{ __('billing.Plan') }} {{ $payment->plan->name ?? 'N/A' }}
{{ __('billing.BillingCycle') }} {{ ucfirst($payment->billing_cycle) }}
{{ __('billing.Amount') }} {{ \App\Models\Central\GeneralSetting::currencySymbol() }}{{ number_format($payment->amount, 2) }} {{ $payment->currency }}
{{ __('billing.Gateway') }} {{ $payment->gateway_label }}
{{ __('billing.Status') }} {{ __('billing.Paid') }}

{{ __('billing.ValidUntil') }}
@endsection @push('scripts') @endpush