Withdraw history
@foreach ($items as $item) @endforeach
Date Quantity Fee Total Status
{{ $item->quantity }} {{ $item->coin->name_short }} {{ eToNumber($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
@if (! empty($pagination)) {{ $pagination->links() }} @endif