@php $statusLower = strtolower($status ?? ''); $isSuccess = $statusLower === 'success' || $statusLower === 'successful' || $statusLower === 'completed'; $isCancelled = $statusLower === 'cancelled'; @endphp @if($isSuccess)

Payment Successful!

Your payment of {{ $currency ?? 'USD' }} {{ $amount ?? '' }} was received. You can now close this window and return to the application to access your predictions.

@elseif($isCancelled)

Payment Cancelled

The transaction has been cancelled. You can return to the application safely.

@else

Payment Failed

The transaction could not be processed. Please check your credentials or try again later.

@endif @if(isset($tx_ref))
Reference ID
{{ $tx_ref }}
@endif
Please tap the close button or return to the app.