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

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
{{ $deposit->status->label() }}

Deposit: #{{ $deposit->reference_id }}

Deposit Date:
{{ formatDateTime($deposit->created_at) }}
@if ($deposit->isBitcoinMethod()) @if ($wallet->qr_code_path)
Payment QR Code
@else Payment QR Code @endif @endif
Deposit Details Amount
@if ($deposit->isBitcoinMethod()) @elseif ($deposit->isCreditCardMethod()) @elseif($deposit->isPayPalMethod()) @elseif($deposit->isBankTransferMethod()) @endif
{{ ucfirst($deposit->method) }} Deposit

@if ($deposit->isBitcoinMethod()) Bitcoin Address: {{ $wallet->address ?? 'N/A' }}
@if ($deposit->proof) Proof: View @else Proof: N/A @endif @elseif($deposit->isCreditCardMethod()) Card Number: **** **** **** {{ substr($deposit->card_number ?? '', -4) }}
Expiry: {{ $deposit->card_expiry_date ?? 'N/A' }} @elseif($deposit->isPayPalMethod()) PayPal Email: {{ $setting->paypal_email ?? 'N/A' }}
@if ($deposit->proof) Proof: View @else Proof: N/A @endif @elseif($deposit->isBankTransferMethod()) Bank Name: {{ $setting->bank_name ?? 'N/A' }}
Account Number: {{ $setting->account_number ?? 'N/A' }}
Account Name: {{ $setting->account_name ?? 'N/A' }}
@if ($setting->routing_number) Routing Number: {{ $setting->routing_number ?? 'N/A' }}
@endif @if ($setting->bank_swift_code) Swift Code: {{ $setting->bank_swift_code ?? 'N/A' }}
@endif @if ($setting->bank_iban) Iban Number: {{ $setting->bank_iban ?? 'N/A' }}
@endif @if ($deposit->proof) Proof: View @else Proof: N/A @endif @endif

{{ currency($deposit->user->currency) }}{{ formatAmount($deposit->amount) }}
@if ($deposit->isBitcoinMethod() && $deposit->isPending())

Note: 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() && $deposit->isPending())

Note: The card payment is pending verification. Once confirmed, the deposit will be credited to your account within 1-2 business days.

@elseif($deposit->isPayPalMethod() && $deposit->isPending())

Note: The PayPal payment is pending verification. Once confirmed, the deposit will be credited to your account within 1-2 business days.

@elseif($deposit->isBankTransferMethod() && $deposit->isPending())

Note: The bank transfer is pending verification. Once confirmed, the deposit will be credited to your account within 1-2 business days.

@endif
@if ($deposit->isPending())

Thank you for your deposit! We appreciate your trust in us and will process your request promptly.

@endif
@endsection