@extends('admin.staking.layouts.master', ['menu' => 'currency_deposit', 'sub_menu' => 'bank_list']) @section('title', isset($title) ? $title : '') @section('style') @endsection @section('content')
  • {{ __('Dashboard') }}

{{ __('Total Investment') }}

{{ $total_investment ?? 0 }}

{{-- {{ __('Show More') }} --}}

{{ __('Total Disputed Investment') }}

{{ $total_return_investment ?? 0 }}

{{-- {{ __('Show More') }} --}}

{{ __('Total Disputable Investment') }}

{{ isset($total_investment) && isset($total_return_investment) ? $total_investment - $total_return_investment : 0 }}

{{ __('Total Investment Bonus') }}

{{ $total_investment_bonus ?? 0 }}

{{-- {{ __('Show More') }} --}}

{{ __('Total Disputed Bonus') }}

{{ $total_given_bonus ?? 0 }}

{{-- {{ __('Show More') }} --}}

{{ __('Total Disputable Bonus') }}

{{ isset($total_investment_bonus) && isset($total_given_bonus) ? $total_investment_bonus - $total_given_bonus : 0 }}

@endsection @section('script') @endsection