{{-- Pilot Mode dashboard preview ("How Pilot Mode works") ------------------------------------------------------------- Shown only on home dashboard, only for hero states: - new - ictp (i.e. users without main balance or active follows) Expects: $stats : array{active_followers:int, lifetime_earned:float, verified_pilots:int} from PilotStatsService::dashboardSnapshot() Static markup (3-step explainer) + dynamic stats row. --}} @php /** @var array $stats */ $stats = $stats ?? [ 'active_followers' => 0, 'lifetime_earned' => 0.0, 'verified_pilots' => 0, ]; // Money abbreviation: $104,540 -> $104.5K, $1.2M -> $1.2M, $42 -> $42 $fmtAbbrev = function ($amount) { if ($amount >= 1000000) { return '$' . number_format($amount / 1000000, 1) . 'M'; } if ($amount >= 1000) { return '$' . number_format($amount / 1000, 1) . 'K'; } return '$' . number_format($amount, 0); }; @endphp
How Pilot Mode works

Trade like a pro. Even if you're not one.

Three steps. No technical knowledge. Real humans you can verify.

1
Deposit
$20 minimum. Funded in minutes.
2
Pick a Pilot
Choose from verified traders. See real win rates, trade history, and follower earnings.
3
Earn automatically
Pilot trades, you earn. Pilot takes 10% of profit only. Withdraw anytime, no lockup.
{{ number_format($stats['active_followers']) }} Active followers
{{ $fmtAbbrev($stats['lifetime_earned']) }} Earned by followers
{{ $stats['verified_pilots'] }} Verified Pilots