@extends('merchant.layouts.master')
@section('breadcrumb')
@include('merchant.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("merchant.dashboard"),
]
], 'active' => __("Dashboard")])
@endsection
@section('content')
{{__("Total Withdraw")}}
{{ get_amount($data['money_out_amount'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{ __("total Received") }}
{{ get_amount($data['receive_money'],null,get_wallet_precision()) }} {{ @$baseCurrency->code }}
{{ __("Total Transactions") }}
{{ $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