Add Money

Current Balance
${{ number_format($card->balance, 2) }}
@csrf
$
@foreach(['btc', 'usdt_trc20', 'usdt_bep20', 'usdt_erc20', 'eth', 'trx', 'bnb', 'dot', 'bch', 'ltc', 'xlm', 'dash', 'sol'] as $crypto) @if($cryptoAsset->{$crypto . '_status'}) @php $balance = $cryptoAsset->{$crypto . '_balance'}; // Handle USDT networks and other cryptos differently if (str_starts_with($crypto, 'usdt_')) { $cryptoName = 'tether'; } else { $cryptoMap = [ 'btc' => 'bitcoin', 'eth' => 'ethereum', 'trx' => 'tron', 'bnb' => 'binancecoin', 'dot' => 'polkadot', 'bch' => 'bitcoin-cash', 'ltc' => 'litecoin', 'xlm' => 'stellar', 'dash' => 'dash', 'sol' => 'solana' ]; $cryptoName = $cryptoMap[$crypto] ?? $crypto; } $price = $prices[$cryptoName]['usd'] ?? 0; $usdValue = $balance * $price; $cryptoSymbol = strtoupper(explode('_', $crypto)[0]); @endphp @endif @endforeach

Important Information

  • The conversion rate is based on the current market price
  • Processing time: Instant
  • Your transaction is secure and encrypted
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif