@extends('user.layouts.master') @section('user_content')
@if(Session::has('withdraw_added')) @elseif(Session::has('withdraw_error')) @endif

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
@foreach($data['withdraws'] as $row) @include('user.modals.fundwithdrawconfirmationmodal') @endforeach
# MY WALLET REQUEST DATE AMOUNT CASHABLE AMOUNT STATUS APPROVAL DATE
{{$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}}
@endsection