We accept only MIND20 Payment Method
@if(Auth::user()->status == 0 && Auth::user()->kyc == 1)
Add Request
@else
Add Request
@include('user.modals.withdrawmodal')
@endif
Available Balance: {{$data['sum_deposit'] ? '$'.number_format((float)$data['sum_deposit'], 2, '.', '') : '$00.00'}}
@error('amount')
{{ $message }}
@enderror
# |
MY WALLET |
REQUEST DATE |
AMOUNT |
CASHABLE AMOUNT |
STATUS |
APPROVAL DATE |
@foreach($data['withdraws'] as $row)
{{$loop->index+1}} |
{{$row->wallet_id}}
|
{{$row->created_at}} |
{{$row->amount}} |
{{$row->payable}} |
@if($row->status == 'awaiting')
Confirm Withdraw
@else
{{$row->status}}
@endif |
{{$row->updated_at}} |
@include('user.modals.fundwithdrawconfirmationmodal')
@endforeach