{{ __('Payment Verification') }}

@if($investments->isEmpty())

No pending payments

All your investments have been processed.

@else
@foreach($investments as $investment)

Investment #{{ $investment->uuid }}

Created {{ $investment->created_at->diffForHumans() }}

${{ number_format($investment->amount / 100, 2) }}

{{ ucfirst($investment->payment_status) }}

Payment Information

@if($investment->payment_method === 'bank_transfer')

Bank Transfer

Please transfer the amount to:

Bank:
{{ config('cgo.bank_name', 'Example Bank') }}
Account:
{{ config('cgo.bank_account', '1234567890') }}
Reference:
{{ $investment->uuid }}
@elseif($investment->payment_method === 'crypto')

Cryptocurrency Payment

@if($investment->crypto_payment_url)

Complete your payment using the link below:

Open Payment Page @else

Payment details are being generated...

@endif
@elseif($investment->payment_method === 'stripe')

Card Payment

Processing your card payment...

@endif

Timeline

  • Investment initiated

    {{ $investment->created_at->format('M d, H:i') }}
@if(in_array($investment->payment_method, ['bank_transfer', 'crypto'])) @endif
Last checked: Never
@endforeach

Need Help?

If you're experiencing issues with your payment or have questions about the verification process, please contact our support team.

@endif
@push('scripts') @endpush