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

{{ __("Overview") }}

{{__("balance")}}

{{ authWalletBalance() }} {{ @$baseCurrency->code }}

flag
{{__("Total Withdraw")}}

{{ getAmount($data['money_out_amount']) }} {{ @$baseCurrency->code }}

{{ __("total Received") }}

{{ getAmount($data['receive_money']) }} {{ @$baseCurrency->code }}

{{ __("Total Transactions") }}

{{ getAmount($data['total_transaction']) }}

@if (auth()->user()->developerApi && auth()->user()->developerApi->mode == payment_gateway_const()::ENV_SANDBOX) @if (count($data['sandbox_fiat_wallets']) > 0 )

{{ __("My Wallet (Sandbox)") }}

@include('merchant.components.wallets.fiat',['fiat_wallets' => $data['sandbox_fiat_wallets']])
@endif @endif

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

{{ __("Latest Transactions") }}

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