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