@extends('layouts.dashly') @section('title', $title) @push('styles') @endpush @section('content') @php if ($payment_mode->name == 'Bitcoin') { $coin = 'BTC'; } elseif ($payment_mode->name == 'Litecoin') { $coin = 'LTC'; } elseif ($payment_mode->name == 'Ethereum') { $coin = 'ETH'; } elseif ($payment_mode->name == 'BUSD') { $coin = 'BUSD'; } else { $coin = 'USDT.TRC20'; } @endphp

Make payment

@if (empty($payment_mode->img_url)) @else @endif

{{ $settings->currency . ' ' . $amount }}

{{ $payment_mode->name }}

Pay via {{ strtolower($payment_mode->name) }}
@if ($title != 'Complete Payment') @if ($payment_mode->methodtype == 'crypto') @include('livewire.user.deposit.crypto-payment') {{-- --}} @endif @if ($payment_mode->methodtype == 'currency') @include('livewire.user.deposit.currency-payment') {{-- --}} @endif @endif {{-- Automatic Cryptopayment qrcode --}} @if ($title == 'Complete Payment')

Send {{ $amount }} to the below address or scan the {{ $coin }} QR code to complete payment.

{{ $p_address }}

Payment QR code
you can exit this page after scanning and completed payment, the system will keep track of your payment and update your account accordingly
@endif @endsection @push('scripts') @endpush