@props([ 'label', 'value', 'unit' => null, 'percent' => null, // 0..100 → renders a bar 'tone' => 'accent', // accent | success | warning | danger ]) @php $bar = [ 'accent' => 'bg-accent', 'success' => 'bg-success', 'warning' => 'bg-warning', 'danger' => 'bg-danger', ][$tone] ?? 'bg-accent'; $pct = is_null($percent) ? null : max(0, min(100, (int) $percent)); @endphp
{{ $label }}
{{ $value }} @if ($unit){{ $unit }}@endif
@if (! is_null($pct))