@forelse($executions as $execution) data_get($execution, 'id') == $selectedKey, 'border-green-500' => data_get($execution, 'status') === 'success', 'border-red-500' => data_get($execution, 'status') === 'failed', 'border-yellow-500' => data_get($execution, 'status') === 'running', ])> @if (data_get($execution, 'status') === 'running')
@endif
Status: {{ data_get($execution, 'status') }}
Started At: {{ $this->formatDateInServerTimezone(data_get($execution, 'created_at', now())) }}
@if (strlen($execution->message) > 0) Download Logs @endif @if (data_get($execution, 'id') == $selectedKey)
@if (data_get($execution, 'status') === 'running')
Task is running...
@endif @if ($this->logLines->isNotEmpty())
@foreach ($this->logLines as $line)
{{ $line }}
@endforeach
@if ($this->hasMoreLogs()) Load More @endif
@else
No output was recorded for this execution.
@endif
@endif @empty
No executions found.
@endforelse