@props([
// array of ['label' => string, 'state' => pending|running|done|failed]
'steps' => [],
])
@foreach ($steps as $i => $step)
@php
$state = $step['state'] ?? 'pending';
$isLast = $loop->last;
$dot = [
'done' => 'bg-success border-success',
'running' => 'bg-info border-info animate-pulse',
'failed' => 'bg-danger border-danger',
'pending' => 'bg-surface border-line-strong',
][$state] ?? 'bg-surface border-line-strong';
$labelTone = $state === 'pending' ? 'text-muted' : 'text-ink';
@endphp
-
@unless ($isLast)
@endunless
{{ $step['label'] }}
{{ __('dashboard.step_state.'.$state) }}
@endforeach