@if ($automation !== null) {{ __('Every attempt the engine made for ":name".', ['name' => $automation->name]) }} @else {{ __('Every attempt the engine has made across all automations on this account. Skipped means the ticket drifted out of the matching state between scan and action.') }} @endif
| {{ __('When') }} | @if ($automationId === null){{ __('Automation') }} | @endif{{ __('Subject') }} | {{ __('Status') }} | {{ __('Detail') }} |
|---|---|---|---|---|
| {{ $execution->started_at?->diffForHumans() ?? '—' }} | @if ($automationId === null)@if ($execution->automation) {{ $execution->automation->name }} @else — @endif | @endif@if ($execution->subject_type && $execution->subject_id) {{ class_basename($execution->subject_type) }} #{{ $execution->subject_id }} @else — @endif |
@php $status = $execution->status; @endphp
|
@php $reason = $execution->condition_snapshot_json['reason_if_skipped'] ?? null; $err = $execution->error_json['message'] ?? null; @endphp @if ($err !== null) {{ $err }} @elseif ($reason !== null) {{ $reason }} @elseif ($status?->value === 'succeeded') {{ __('Actions ran cleanly.') }} @else — @endif |