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

{{ $title }}

Choose a Trading Plan

Select a plan that fits your capital, risk level, and daily trading goals.

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

{{ $plan->daily_profit }}% Daily

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

  • {{ $plan->trades_per_day }} trades per day
  • {{ $plan->daily_profit_duration }} days duration
  • @foreach ($plan->features as $feature)
  • {{ $feature }}
  • @endforeach
@php $userPlan = \App\Models\UserPlan::where('user_id', $user->id)->where( 'plan_id', $plan->id, ); @endphp @if (!$userPlan->exists())
@csrf
@else
{{ $userPlan->first()->status->label() }}
@endif
@empty
No trading plans available at the moment.
@endforelse
@endsection