data_get($execution, 'status') === 'success',
'border-red-500' => data_get($execution, 'status') === 'failed',
])>
@if (data_get($execution, 'status') === 'running')
@endif
Status: {{ data_get($execution, 'status') }}
Started At: {{ data_get($execution, 'created_at') }}
@if (data_get($execution, 'id') == $selectedKey)
@if (data_get($execution, 'message'))
Output:
{{ data_get($execution, 'message') }}
@else
No output was recorded for this execution.
@endif
@endif
@empty
No executions found.
@endforelse