@if ($runs->isEmpty()) @else @foreach ($runs as $run)
@php $pr = $run->input['prospect'] ?? []; @endphp
{{ $run->started_at?->diffForHumans() }}
Run #{{ $run->id }} · {{ $run->trigger }} @if (! empty($pr['name'])) · {{ $pr['name'] }}@if (! empty($pr['country'])), {{ $pr['country'] }}@endif @endif
${{ number_format((float) $run->total_cost_usd, 4) }} {{ number_format((int) $run->total_tokens) }} tokens View full cycle →
@if ($run->tasks->isNotEmpty()) @foreach ($run->tasks as $task) @endforeach
Skill Type Status Tokens Cost
{{ $task->skills_applied[0] ?? '—' }} {{ $task->type }} {{ number_format((int) $task->tokens_used) }} ${{ number_format((float) $task->cost_usd, 4) }}
@endif
@endforeach @endif