@extends('agent.layouts.master')
@section('breadcrumb')
@include('agent.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("agent.dashboard"),
]
], 'active' => __("Dashboard")])
@endsection
@section('content')
@include('agent.components.wallets.fiat',compact("fiat_wallets"))
@include('agent.components.wallets.crypto',compact("crypto_wallets"))
{{ __("Total Add Money") }}
{{ get_amount($data['totalAddMoney'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{__("Total Withdraw")}}
{{ get_amount($data['totalWithdrawMoney'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{ __("Total Send Money") }}
{{ get_amount($data['totalSendMoney'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{ __("Total Money In") }}
{{ get_amount($data['totalMoneyIn'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{ __("Total Received Money") }}
{{ get_amount($data['totalReceiveMoney'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{ __("Total Send Remittance") }}
{{ get_amount($data['totalSendRemittance'],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 Transactions") }}
{{ $data['total_transaction'] }}
@include('agent.components.transaction-log',compact("transactions"))
@endsection
@push('script')
@endpush