@extends('frontend::layouts.master') @section('title') Payment Successful - {{ config('app.name') }} @endsection @section('content')

Thank You for Your Order!

Your payment has been processed successfully. You will receive a confirmation email shortly with your order details.

@if($order)
Order Number: {{ $order->order_number }}

Total Amount: ${{ number_format($order->total_amount, 2) }}

Items: {{ $order->orderItems->count() }} item(s)

Order Date: {{ $order->created_at->format('M j, Y \a\t g:i A') }}

@elseif(request('order'))
Order Number: {{ request('order') }}
@endif

What's Next?

Email Confirmation

You'll receive an email confirmation with your order details.

Download Access

Download links will be provided in your confirmation email.

Support

Our support team is available to help with any questions.

@endsection @push('style') @endpush @push('script') @endpush