@extends('user.layouts.master') @section('user_content')
@if(Session::has('withdraw_added')) @elseif(Session::has('withdraw_error')) @endif
@if(Auth::user()->kyc == 0)
Please Complete KYC Verification to activate Withdrawal
@else

Request Status for Withdraw Fund

@if(Auth::user()->status == 0) Add Request @else Add Request @include('user.modals.withdrawbonusmodal') @endif
Available Balance: {{$data['sum_deposit'] ? ''.number_format((float)$data['sum_deposit'], 2, '.', '') : '00.00'}}

@foreach($data['withdrawbonus'] as $row) @include('user.modals.withdrawconfirmationmodal') @endforeach
# MY WALLET REQUEST DATE AMOUNT CASHABLE AMOUNT STATUS APPROVAL DATE
{{$loop->index+1}} {{$row->wallet->wallet_name}} {{$row->created_at}} {{$row->amount}} {{$row->wallet->wallet_no}} @if($row->status == 'awaiting') Confirm Withdraw @else {{$row->status}} @endif {{$row->updated_at}}
@endif
@endsection