@props(['currentStep' => 1, 'totalSteps' => 3])
@for ($i = 1; $i <= $totalSteps; $i++)
@if ($i < $currentStep)
@else
{{ $i }}
@endif
@if ($i === 1)
Server
@elseif ($i === 2)
Connection
@elseif ($i === 3)
Complete
@endif
@if ($i < $totalSteps)
@endif
@endfor