@extends('layouts.dashboard') @section('title', 'Payment Processing') @section('content')
@if($status === 'processing')

Payment Confirmed!

{{ $message }}

Payment Details

Quote Request

{{ $quoteRequest->title }}

Amount Paid

${{ number_format($quoteRequest->quoted_amount, 2) }}

@isset($orderNumber)

Order Number

{{ $orderNumber }}

@endisset @isset($invoiceId)

Invoice ID

{{ $invoiceId }}

@endisset

What happens next?

  • Your order has been created and is now active
  • Our team will start working on your embroidery project
  • You'll receive email updates about your order progress
  • Estimated delivery: {{ $quoteRequest->delivery_days }} business days
@else

Processing Payment

{{ $message }}

Quote Details

Project

{{ $quoteRequest->title }}

Amount

${{ number_format($quoteRequest->quoted_amount, 2) }}

Delivery

{{ $quoteRequest->delivery_days }} business days

Status

{{ ucfirst($quoteRequest->status) }}

Please wait...

  • Your payment is being processed by 2Checkout
  • This page will automatically update when payment is confirmed
  • Please do not close this window or go back
  • If you experience any issues, please contact our support team
Back to Quote
@endif
@endsection