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

{{ __("Overview") }}

{{__("Total Withdraw")}}

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

{{ __("total Received") }}

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

{{ __("Total Transactions") }}

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

{{-- main wallet --}}

{{ __("My Wallets") }}

@include('merchant.components.wallets.fiat',compact("fiat_wallets"))
@include('merchant.components.wallets.crypto',compact("crypto_wallets"))
{{-- sand box wallet --}} @if (count($data['sandbox_fiat_wallets']) > 0 )

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

@include('merchant.components.wallets.sandbox_fiat',['sandbox_fiat_wallets' => $data['sandbox_fiat_wallets']])
@endif @if (count($data['sandbox_crypto_wallets']) > 0 )
@include('merchant.components.wallets.sandbox_crypto',['sandbox_crypto_wallets' => $data['sandbox_crypto_wallets']])
@endif {{-- @endif --}}

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

{{ __("Latest Transactions") }}

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