@extends('admin.layouts.main') @push('styles') @endpush @section('content')

Crypto Wallets

@if(session('success')) @endif @if(session('warning')) @endif @if(session('danger')) @endif
@forelse($cryptoWallets as $wallet) @empty @endforelse
# 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) QR Code @else No QR Code @endif ${{ 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
@csrf @method('DELETE')
No crypto wallets found.
@endsection