@extends('admin.layouts.master') @section('title', 'درخواست‌های برداشت HD Wallet') @section('content')

درخواست‌های برداشت HD Wallet

@if(session('success')) @endif @if(session('error')) @endif @if(session('warning')) @endif
درخواست‌های برداشت

درخواست‌های برداشت HD Wallet را بررسی و تایید یا رد کنید.

پاک کردن
@forelse($withdrawals as $withdrawal) @empty @endforelse
# کاربر شبکه ارز مقدار کارمزد آدرس مقصد وضعیت 2FA تاریخ ثبت عملیات
{{ $withdrawal->id }}
{{ $withdrawal->user->name ?? 'نامشخص' }} {{ $withdrawal->user->family ?? '' }}
{{ $withdrawal->user->mobile ?? $withdrawal->user->email ?? '' }}
{{ $withdrawal->network }} {{ $withdrawal->currency }} {{ rtrim(rtrim(number_format($withdrawal->amount, 8, '.', ''), '0'), '.') }} {{ rtrim(rtrim(number_format($withdrawal->fee, 8, '.', ''), '0'), '.') }} {{ Str::limit($withdrawal->to_address, 20) }} @if($withdrawal->memo)
Memo: {{ $withdrawal->memo }} @endif
@switch($withdrawal->status) @case('pending') در انتظار @break @case('approved') تایید شده @break @case('processing') در حال پردازش @break @case('completed') تکمیل شده @break @case('failed') ناموفق @break @case('rejected') رد شده @break @endswitch @if($withdrawal->two_fa_verified) @else @endif {{ jdate($withdrawal->created_at)->format('Y/m/d H:i') }} جزئیات

هیچ درخواست برداشتی یافت نشد.

{{ $withdrawals->links() }}
@endsection