@extends('dashboard.admin.layouts.app') @section('content')
| Plan Name: | {{ $copyTradePlan->name }} |
| Type: | {{ $copyTradePlan->type->label() }} |
| Minimum: | {{ formatAmount($copyTradePlan->minimum) }} |
| Maximum: | {{ formatAmount($copyTradePlan->maximum) }} |
| Daily Profit (%): | {{ $copyTradePlan->daily_profit }}% |
| Commission (%): | {{ $copyTradePlan->commission_percentage }}% |
| Trades Per Day: | {{ $copyTradePlan->trades_per_day }} |
| Daily Profit Duration: | {{ $copyTradePlan->daily_profit_duration }} days |
| Daily Profit Multiplication: | {{ $copyTradePlan->daily_profit_multiplication }}x |
| Features: | @foreach ($copyTradePlan->features as $feature) {{ $feature }} @endforeach |
| Created: | {{ $copyTradePlan->created_at->format('M d, Y H:i') }} |
| Updated: | {{ $copyTradePlan->updated_at->format('M d, Y H:i') }} |
| User | Invested Amount | Unrealized Profit | Status | Date Subscribed | Actions |
|---|---|---|---|---|---|
|
{{ substr($subscriber->user->name, 0, 1) }}
{{ $subscriber->user->name }}{{ $subscriber->user->email }} |
{{ currency($subscriber->user->currency) }}{{ formatAmount($subscriber->amount) }} | {{ $subscriber->unrealized_profit >= 0 ? '+' : '' }}{{ currency($subscriber->user->currency) }}{{ formatAmount($subscriber->unrealized_profit) }} | {{ $subscriber->status->label() }} | {{ $subscriber->created_at->format('M d, Y') }} | @if ($subscriber->status === \App\Enum\UserCopyTradePlanStatus::ACTIVE) @elseif ($subscriber->status === \App\Enum\UserCopyTradePlanStatus::CANCELLED) @endif |
| No subscribers found for this plan yet. | |||||