@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
merge(['class' => 'rounded-lg border border-line bg-surface p-4 shadow-xs']) }}>

{{ $label }}

{{ $value }} @if ($unit){{ $unit }}@endif

@if (! is_null($pct))
{{-- the one allowed inline style: dynamic progress width (R4) --}}
@endif