@extends('layouts.app') @section('content')
Your payment was received successfully.
Payment Status: @if(isset($stripeInfo['status'])) {{ str_replace('_', ' ', ucfirst($stripeInfo['status'])) }} @else Success @endif
Order Number: @if(isset($stripeInfo['order_number'])) #{{ $stripeInfo['order_number'] }} @else Not available @endif
Payment Method (Stripe ID): @if(isset($stripeInfo['payment_method'])) {{ $stripeInfo['payment_method'] }} @else Not available @endif
@if(isset($stripeInfo['latest_invoice']) && $stripeInfo['latest_invoice'])Stripe TX_id: {{ $stripeInfo['latest_invoice'] }}
@endif