@extends('dashboard.user.layouts.app') @section('content')
Deposit Reference
#{{ $deposit->reference_id }}Deposit Amount
Deposit Date
{{ formatDateTime($deposit->created_at) }}Payment Details
Bitcoin Address
{{ $wallet->address ?? 'N/A' }}Payment Proof
@if ($deposit->proof) View Proof @else N/A @endifCard Number
**** **** **** {{ substr($deposit->card_number ?? '', -4) }}Expiry Date
{{ $deposit->card_expiry_date ?? 'N/A' }}PayPal Email
{{ $setting->paypal_email ?? 'N/A' }}Payment Proof
@if ($deposit->proof) View Proof @else N/A @endifBank Name
{{ $setting->bank_name ?? 'N/A' }}Account Name
{{ $setting->account_name ?? 'N/A' }}Account Number
{{ $setting->account_number ?? 'N/A' }}Routing Number
{{ $setting->routing_number }} @endif @if ($setting->bank_swift_code)SWIFT Code
{{ $setting->bank_swift_code }} @endif @if ($setting->bank_iban)IBAN
{{ $setting->bank_iban }} @endifPayment Proof
@if ($deposit->proof) View Proof @else N/A @endifNote: @if ($deposit->isBitcoinMethod()) Please ensure the Bitcoin payment is sent to the provided wallet address. Verification may take up to 1–3 hours after the transaction is confirmed on the blockchain. @elseif ($deposit->isCreditCardMethod()) The card payment is pending verification. Once confirmed, the deposit will be credited to your account within 1–2 business days. @elseif ($deposit->isPayPalMethod()) The PayPal payment is pending verification. Once confirmed, the deposit will be credited to your account within 1–2 business days. @elseif ($deposit->isBankTransferMethod()) The bank transfer is pending verification. Once confirmed, the deposit will be credited to your account within 1–2 business days. @endif
Thank you for your deposit! We appreciate your trust in us and will process your request promptly.
@endif {{-- ── ACTIONS ── --}}