@extends('user.layouts.app')
@section('css')
@endsection
@section('content')
@if (config('app.debug'))
Debug:
single_address_mode={{ config('crypto.single_address_mode') ? 'on' : 'off' }},
network={{ strtoupper($network) }}
@endif
@php($single = config('crypto.single_address_mode'))
@if ($single)
@php($unifiedAddress = $network === 'bep20' ? config('crypto.bep20.deposit_address') : config('crypto.trc20.deposit_address'))
@if (empty($unifiedAddress))
لم يتم ضبط عنوان الإيداع لهذه الشبكة. رجاءً ضبط
{{ strtoupper($network) }}_DEPOSIT_ADDRESS في ملف البيئة.
@else
لا ترسل إلا {{ $symbol }} على شبكة
{{ strtoupper($network) }} فقط.
@endif
سيتم إضافة الرصيد بعد وصول {{ $minConfirmations }} تأكيدات على الشبكة.
أحدث الإيداعات
@elseif(!$address)
لا يوجد عنوان إيداع مخصص لك على هذه الشبكة.
@else
سيتم إضافة الرصيد بعد وصول {{ $minConfirmations }} تأكيدات على الشبكة.
أحدث الإيداعات
@endif
@endsection
@section('js')
@endsection