{{-- Top Pilots dashboard strip ------------------------------------------------------------- Shown only on home dashboard, only for hero states: - new - ictp - balance (i.e. users who don't yet follow any pilot) Expects: $topPilots : array from PilotTopPilotsService::topThree() Empty array = render nothing. Each pilot card row has: - Avatar (initials, color-coded) - Live dot (only when is_live = true) - Name + min entry - Win rate (integer + small decimal) - Sparkline (8-day cumulative P&L) - Meta grid: Generated 30d / Followers / Avg bid range - Follow button (locked when is_accepting_followers = false) --}} @php /** @var array $topPilots */ $topPilots = $topPilots ?? []; @endphp @if (count($topPilots) > 0)

Top Pilots this week

See all Pilots →
@foreach ($topPilots as $pilot) @include('partials.pilot.pilot-card', ['pilot' => $pilot]) @endforeach
@endif