@foreach($playbook['steps'] as $stepIndex => $step)
{{-- Step Number --}}
{{ $stepIndex + 1 }}
{{-- Step Icon --}}
{{ $step['icon'] }}
{{-- Step Label --}}
{{-- Step Status --}}
@if($step['status'] === 'ready')
@else
{{ __('Pending') }}
@endif
{{-- Connector line --}}
@if($stepIndex < count($playbook['steps']) - 1)
@endif
@endforeach