@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Funding Wallet Control @endsection @section('content')

Funding Wallet Control ( {{ $admindata->first_name.' '.$admindata->last_name }} )

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
Add to Funding Wallet
@csrf
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('user_notes')) {{ $errors->first('user_notes') }} @endif
@if ($errors->has('added_type')) {{ $errors->first('added_type') }} @endif

Funding Wallet Summary

@if(!empty($fund_wallet_groupbycountry)) @foreach ($fund_wallet_groupbycountry as $key => $result) @endforeach @else @endif
Country Wallet Amount Debited Amount Balance
@if($result->sum_credit_amount !=''){{$result->sum_credit_amount}} @else 0 @endif @if($result->sum_debit_amount !=''){{ $result->sum_debit_amount }} @else 0 @endif {{ $wallet_balance }}
No records

Fund Transactions

Date Amount Country Added By Type Note Action
@endsection @section('custom_js') @endsection