Withdraw all history
@if(! empty($items))
@foreach ($items as $item) @endforeach
Date Quantity Fee Total Status
{{ $item->quantity }} {{ $item->coin->name_short }} {{ $item->total_fee }} {{ $item->total }} @if ($item->status === \App\Models\Withdraw::WITHDRAW_STATUS[0])
Pending
@elseif ($item->status === \App\Models\Withdraw::WITHDRAW_STATUS[1])
Approved
@elseif ($item->status === \App\Models\Withdraw::WITHDRAW_STATUS[2])
Missing
@elseif ($item->status === \App\Models\Withdraw::WITHDRAW_STATUS[3])
Rejected
@endif
@endif @empty($items) @if($loading)
Loading...
@else @endif @endempty