@extends('layouts.app') @section('title','Crypto Payment') @push('styles') @endpush @section('content')

Crypto Payment

Invoice: {{ $deposit->provider_invoice_id }}
Network
{{ strtoupper($deposit->network) }}
Currency
{{ strtoupper($deposit->currency) }}
Address
{{ $deposit->address }}
@if($deposit->memo)
Memo/Tag
{{ $deposit->memo }}
@endif
Amount to pay
{{ $deposit->amount_exact ?? $deposit->amount_requested ?? 'Any amount' }} {{ $deposit->currency }}
Expires
{{ optional($deposit->expires_at)->toDayDateTimeString() ?? '—' }}
Confirmations needed: {{ config('oxapay.confirmations') }}. Payment status updates automatically.
Status
pending
Tx Hash
Confirmations
0

  1. Copy the address above or scan the QR code.
  2. Send {{ strtoupper($deposit->currency) }} on {{ strtoupper($deposit->network) }}.
  3. If a tag/memo is shown, it’s mandatory.
  4. Confirmations take 5–30 minutes.
@endsection @push('scripts') @endpush