{{ $user->surname }} {{ $user->name }}

{{ $user->type }}

  • Status
    @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
  • Date created
  • Date updated
  • Quantity
    {{ $item->quantity }}
  • Coin
    {{ $item->coin->coin_id }} {{ $item->coin->name_short }}
  • Fee
    {{ eToNumber($item->total_fee) }}
  • Total
    {{ $item->total }}
  • Remarks
    {{ $item->remarks }}
  • @if ($item->type == 'address')
  • Payment Type
    {{ $item->type }}
  • Address
  • @else
  • {{ $item->type }}
    {{ $item->address }}
  • @endif
@if (empty($user->kyc_verified_at))
@else
@endif

KYC verification

Set status:

@foreach(\App\Models\Withdraw::WITHDRAW_STATUS as $status) @if ($status != $item->status) @if ($status === \App\Models\Withdraw::WITHDRAW_STATUS[1]) @else @endif @endif @endforeach
@if ($saved) Withdraw status changing! @endif