@extends('user.layouts.master') @section('breadcrumb') @include('user.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("user.dashboard"), ] ], 'active' => __("Dashboard")]) @endsection @section('content')

{{ __("appL My Wallets") }}

@include('user.components.wallets.fiat',compact("fiat_wallets"))
@include('user.components.wallets.crypto',compact("crypto_wallets"))

{{ __("Overview") }}

{{__("Total Receive Remittance")}}

{{ get_amount($data['totalReceiveRemittance'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}

{{ __("Total Send Remittance") }}

{{ get_amount($data['totalSendRemittance'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}

{{ __("Virtual Card") }}

{{ get_amount($data['cardAmount'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}

{{__("Total Bill Pay")}}

{{ get_amount($data['billPay'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}

{{ __("Total Mobile TopUp") }}

{{ get_amount($data['topUps'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}

{{ __("Total Withdraw") }}

{{ get_amount($data['withdraw'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}

{{ __("Total Transactions") }}

{{$data['total_transaction'] }}

{{ __("Total Gift Cards") }}

{{$data['total_gift_cards'] }}

{{ __("Add Money Chart") }}

{{ __("Withdraw Money") }}

{{ __("Latest Transactions") }}

@include('user.components.transaction-log',compact("transactions"))
@endsection @push('script') @endpush