Trigger: {{ $triggers[$wf->trigger_event] ?? $wf->trigger_event }}
{{ count($wf->actions ?? []) }} acciones
{{ $wf->runs_count }} ejecutadas
@if(! empty($wf->actions))
@foreach($wf->actions as $i => $action)
{{ $i + 1 }}. {{ $actions[$action['type']] ?? $action['type'] }}
@if(! empty($action['params']))
{{ json_encode($action['params'], JSON_UNESCAPED_UNICODE) }}
@endif
@endforeach
@endif