@extends('layouts.app') @section('title', 'Payment Successful') @section('content')

Payment Successful!

Thank you for your purchase! Your {{ $transaction->package->name }} package has been successfully processed.

Purchase Summary

Completed
@switch($transaction->package->type) @case('vip') @break @case('money') @break @case('job') @break @default @endswitch

{{ $transaction->package->name }}

{{ $transaction->package->description }}

Transaction ID {{ $transaction->transaction_id ?? $transaction->uuid }}
@if($transaction->server)
Server {{ $transaction->server->name }}
@endif
Payment Method @if($transaction->payment_method === 'stripe') Credit/Debit Card @else PayPal @endif
@if($transaction->discount_amount > 0)
Original Price {{ currency_symbol(config_value('store_currency', 'GBP')) }}{{ number_format($transaction->original_amount, 2) }}
Discount Applied -{{ currency_symbol(config_value('store_currency', 'GBP')) }}{{ number_format($transaction->discount_amount, 2) }} ({{ $transaction->discount_percentage }}%)
@endif
Total Paid {{ currency_symbol(config_value('store_currency', 'GBP')) }}{{ number_format($transaction->amount, 2) }}
Date & Time {{ $transaction->created_at->format('M d, Y \a\t H:i') }}

What happens next?

Processing Complete

Your purchase has been successfully processed and recorded

Benefits Applied

Your in-game benefits will be available within 5-10 minutes

Ready to Play

Join the server and enjoy your new benefits!

Need help? Contact our support team if you don't receive your benefits within 15 minutes.

Copied to clipboard!
@endsection @push('scripts') @endpush