برداشت {{ $currency }}
@if($wallet)
موجودی شما
موجودی قابل استفاده:
{{ rtrim(rtrim(number_format($balance['balance'], 8, '.', ''), '0'), '.') }} {{ $currency }}
@if((float)$balance['locked_balance'] > 0)
قفل شده:
{{ rtrim(rtrim(number_format($balance['locked_balance'], 8, '.', ''), '0'), '.') }} {{ $currency }}
@endif
@if((float)$balance['pending_deposits'] > 0)
در انتظار تایید:
{{ rtrim(rtrim(number_format($balance['pending_deposits'], 8, '.', ''), '0'), '.') }} {{ $currency }}
@endif
تاریخچه برداشتهای اخیر
| آدرس مقصد |
مقدار |
وضعیت |
TX Hash |
تاریخ |
@forelse($withdrawals as $withdrawal)
{{ Str::limit($withdrawal->to_address, 16) }}
|
{{ rtrim(rtrim(number_format($withdrawal->amount, 8, '.', ''), '0'), '.') }} |
@if($withdrawal->status === 'completed')
تکمیل شده
@elseif($withdrawal->status === 'processing')
در حال پردازش
@elseif($withdrawal->status === 'approved')
تایید شده
@elseif($withdrawal->status === 'pending')
در انتظار
@elseif($withdrawal->status === 'rejected')
رد شده
@else
{{ $withdrawal->status }}
@endif
|
@if($withdrawal->tx_hash)
{{ Str::limit($withdrawal->tx_hash, 16) }}
@if($network === 'BTC')
@elseif($network === 'ETH' || $network === 'ERC20')
@elseif($network === 'TRON' || $network === 'TRC20')
@endif
@else
-
@endif
|
{{ jdate($withdrawal->created_at)->format('Y/m/d H:i') }} |
@empty
| هیچ برداشتی ثبت نشده است |
@endforelse
@else
کیف پول یافت نشد.
@endif