@props(['scenario', 'editable' => true])
@if(isset($scenario['name'])) {{ $scenario['name'] }} @endif
@foreach($scenario['items'] as $index => $item)
@if($editable ?? true) @if($item['type'] === 'command') @elseif($item['type'] === 'delay') @endif @endif @if($item['type'] === 'command')
{{ $item['value'] }}
@elseif($item['type'] === 'delay')
{{ $item['value'] }}
@endif @if($editable ?? true) @if($item['type'] === 'command') @elseif($item['type'] === 'delay') @endif @endif
@if($index < count($scenario['items']) - 1)
Arrow Down Icon
@endif
@endforeach