@extends("layouts.app") @section("content")

{{ __("checkout.complete.oops") }}

{{ __("checkout.complete.pending_thank_you") }}
Pending

{{ __("checkout.complete.payment_info") }}

  • {{ __("checkout.complete.payment_method") }}

    {{ $payment->gateway->display_name }}


  • @if ($payment->gateway_phone_number)
  • {{ __("checkout.complete.phone_number") }}

    {{ $payment->gateway_phone_number }}


  • @endif @if ($payment->gateway_transaction_id)
  • {{ __("checkout.complete.transaction_id") }}

    {{ \Illuminate\Support\Str::limit($payment->gateway_transaction_id, 20) }}


  • @endif
  • {{ __("checkout.complete.amount") }}

    {{ show_amount($payment->paymentableAmount(), $payment->gateway_currency) }}


  • {{ __("checkout.complete.status") }}

    {{ strtoupper($payment->status) }}

{{-- --}}
@endsection