@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

Available Wallet Balance: {{ currency($user->currency) }} {{ formatAmount(totalBalance($user)) }}

Choose a Copy Trade Plan

Select a plan using your wallet balance to start automated copy trading with professional traders.

@forelse ($copyTradePlans as $plan)
{{ $plan->type->label() }}
{{ $plan->name }}

{{ $plan->daily_profit }}% Daily Profit

{{ $plan->commission_percentage }}% Commission

Min: {{ currency($user->currency) }}{{ formatAmount($plan->minimum) }} | Max: {{ currency($user->currency) }}{{ formatAmount($plan->maximum) }}

{{ $plan->daily_profit_duration }} days duration

  • {{ $plan->trades_per_day }} trades per day
  • {{ $plan->daily_profit_multiplication }}x profit multiplier
  • @foreach ($plan->features as $feature)
  • {{ $feature }}
  • @endforeach
@csrf
@empty
No copy trade plans available at the moment.
@endforelse
@endsection