{{ $bot->name }}

Edit Bot
{{-- Flash Messages --}}

Bot Details

Type
{{ $bot->bot_type }}
Amount Range
${{ number_format($bot->min_amount, 2) }} - ${{ number_format($bot->max_amount, 2) }}
Duration Options
{{ implode(', ', $botSettings->duration_options ?? []) }}

Statistics

Total Subscriptions
{{ $bot->subscriptions_count }}
Active Subscriptions
{{ $bot->active_subscriptions_count }}
Total Investment
${{ number_format($bot->subscriptions_sum_amount ?? 0, 2) }}
Total Profit
${{ number_format($bot->subscriptions_sum_total_profit ?? 0, 2) }}
@if($bot->description)

Description

{{ $bot->description }}

@endif

Recent Trades

@forelse($bot->trades as $trade) @empty @endforelse
Date Trading Pair Action Amount Result Profit/Loss
{{ $trade->created_at->format('M d, Y H:i') }} {{ $trade->trading_pair }} {{ ucfirst($trade->action) }} ${{ number_format($trade->amount, 2) }} {{ ucfirst($trade->result) }} {{ $trade->result === 'win' ? '+' : '-' }}${{ number_format($trade->result === 'win' ? $trade->profit : $trade->amount, 2) }}
No trades found