@foreach ($agents as $agent) @endforeach
@if ($error)
{{ $error }}
@endif
Run Running…
@if ($lastRun)

Run #{{ $lastRun->id }}

${{ number_format((float) $lastRun->total_cost_usd, 4) }} {{ number_format((int) $lastRun->total_tokens) }} tokens
@foreach ($lastRun->tasks as $task) @php $key = $task->id; $slug = $task->skills_applied[0] ?? '—'; @endphp
@if ($task->skip_reason)
Skip reason
{{ $task->skip_reason }}
@endif @if ($task->error_message)
Error
{{ $task->error_message }}
@endif @php $output = $task->output_payload ?? []; @endphp @if (! empty($output['text']))
Output
{{ $output['text'] }}
@endif @php $structured = collect($output)->except('text')->all(); @endphp @if (! empty($structured))
Structured
{{ json_encode($structured, JSON_PRETTY_PRINT) }}
@endif
@endforeach
@endif