Crypto Wallets
{{ session('success') }}
@endif
@if(session('warning'))
{{ session('warning') }}
@endif
@if(session('danger'))
{{ session('danger') }}
@endif
Crypto Wallets
Add New Crypto Wallet| # | Network | Display Name | Wallet Address | Token | QR Code | Min Deposit | Max Deposit | Min Withdrawal | Max Withdrawal | Status | Usage | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ strtoupper(str_replace('_', ' ', $wallet->network)) }} | {{ $wallet->network_display_name }} |
{{ Str::limit($wallet->wallet_address, 20) }}
|
{{ $wallet->token }} |
@if($wallet->qr_code_image)
|
${{ number_format($wallet->minimum_deposit ?? 0, 2) }} | ${{ number_format($wallet->maximum_deposit ?? 0, 2) }} | ${{ number_format($wallet->minimum_withdrawal ?? 0, 2) }} | ${{ number_format($wallet->maximum_withdrawal ?? 0, 2) }} | @if($wallet->is_active) Active @else Inactive @endif |
@if($wallet->allowed_for_deposit)
Deposit
@endif
@if($wallet->allowed_for_withdrawal)
Withdrawal
@endif
|
|
| No crypto wallets found. | ||||||||||||