@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

{{-- ── CARD HEADER ── --}}

Deposit Reference

#{{ $deposit->reference_id }}
{{ $deposit->status->label() }}
{{-- ── AMOUNT HERO ── --}}

Deposit Amount

{{ currency($deposit->user->currency) }}{{ formatAmount($deposit->amount) }}

@if ($deposit->isBitcoinMethod()) @elseif ($deposit->isCreditCardMethod()) @elseif ($deposit->isPayPalMethod()) @elseif ($deposit->isBankTransferMethod()) @endif {{ ucfirst($deposit->method) }} Deposit
{{-- ── DATE + QR CODE ROW ── --}}

Deposit Date

{{ formatDateTime($deposit->created_at) }}
@if ($deposit->isBitcoinMethod())
@if ($wallet->qr_code_path) Payment QR Code @else Payment QR Code @endif
@endif
{{-- ── PAYMENT DETAILS ── --}}

Payment Details

@if ($deposit->isBitcoinMethod())

Bitcoin Address

{{ $wallet->address ?? 'N/A' }}

Payment Proof

@if ($deposit->proof) View Proof @else N/A @endif
@elseif ($deposit->isCreditCardMethod())

Card Number

**** **** **** {{ substr($deposit->card_number ?? '', -4) }}

Expiry Date

{{ $deposit->card_expiry_date ?? 'N/A' }}
@elseif ($deposit->isPayPalMethod())

PayPal Email

{{ $setting->paypal_email ?? 'N/A' }}

Payment Proof

@if ($deposit->proof) View Proof @else N/A @endif
@elseif ($deposit->isBankTransferMethod())

Bank Name

{{ $setting->bank_name ?? 'N/A' }}

Account Name

{{ $setting->account_name ?? 'N/A' }}

Account Number

{{ $setting->account_number ?? 'N/A' }}
@if ($setting->routing_number || $setting->bank_swift_code || $setting->bank_iban)
@if ($setting->routing_number)

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 }} @endif
@endif

Payment Proof

@if ($deposit->proof) View Proof @else N/A @endif
@endif
{{-- ── PENDING NOTE ── --}} @if ($deposit->isPending())

Note: @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 ── --}}
{{-- /card-body --}}
{{-- /card --}}
@endsection