{{ __($setTitle) }}
@foreach(['Trade Balance', 'Practice Balance'] as $balanceType)
{{ __($balanceType) }}
{{ getCurrencySymbol() }}{{ shortAmount(Auth::user()->wallet->{$balanceType === 'Trade Balance' ? 'trade_balance' : 'practice_balance'}) }}
@endforeach
    @foreach (['total', 'today', 'wining', 'loss', 'draw', 'high', 'low'] as $key)
  • {{ __("admin.report.statistics.trade.one.{$key}") }}
    {{ getCurrencySymbol() }}{{ shortAmount($trade->$key) }}
  • @endforeach

{{ __($setTitle) }}

@include('user.partials.trade.trade-history', ['tradeLogs' => $tradeLogs])
{{ $tradeLogs->links() }}