@for ($i = 1; $i <= $totalSteps; $i++)
$i === $currentStep,
'text-neutral-500 dark:text-fg-dim' => $i !== $currentStep,
])>
$i === $currentStep,
'border-emerald-500/25 bg-emerald-500/10 text-emerald-600 dark:text-emerald-400' => $i < $currentStep,
'border-neutral-200 dark:border-white/[0.1]' => $i > $currentStep,
])>
@if ($i < $currentStep)
@else
{{ $i }}
@endif
@if ($i === 1)
Server
@elseif ($i === 2)
Connection
@else
Complete
@endif
@endfor