{{ __('Payment Successful') }}

{{ __('Payment Confirmed') }}

{{ __('Your subscription is now active') }}

{{ __('Order Details') }}

{{ __('Package') }} {{ $payment->subscription->package->name }}
{{ __('Driver Limit') }} {{ $payment->subscription->package->driver_limit }}
{{ __('Amount Paid') }} ${{ number_format($payment->amount, 2) }}
{{ __('Transaction ID') }} {{ $payment->transaction_id ?? 'N/A' }}
{{ __('Payment Method') }} {{ $payment->paymentMethod->name }}
{{ __('Date') }} {{ $payment->processed_at->format('M d, Y H:i') }}

{{ __('Your Subscription') }}

{{ __('Status') }} {{ ucfirst($payment->subscription->status) }}
{{ __('Started') }} {{ $payment->subscription->started_at->format('M d, Y') }}
@if ($payment->subscription->ends_at)
{{ __('Expires') }} {{ $payment->subscription->ends_at->format('M d, Y') }}
@endif

{{ __('What\'s Next') }}

  • {{ __('Your account is now active') }}

    {{ __('You can start adding drivers and trucks immediately') }}

  • {{ __('Confirmation email sent') }}

    {{ __('Check your email for a receipt and invoice') }}

  • {{ __('Manage your subscription') }}

    {{ __('You can change your package or view history anytime') }}

{{ __('Questions? Contact our support team for assistance') }}