@extends('merchant.layouts.master')
@section('breadcrumb')
@include('merchant.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("merchant.dashboard"),
]
], 'active' => __("Dashboard")])
@endsection
@section('content')
{{__("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 --}}
@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 )
@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 --}}
@include('merchant.components.transaction-log',compact("transactions"))
@endsection
@push('script')
@endpush