@php /** * Admin UI Component: Mini Bar Row (link) * * Required: * - $href * - $label * - $pct * - $value * * Optional: * - $rowRole * - $barRole * - $title * - $ariaLabel * - $class */ $href = (string) ($href ?? '#'); $label = (string) ($label ?? ''); $pct = (float) ($pct ?? 0); $value = (string) ($value ?? ''); $rowRole = (string) ($rowRole ?? ''); $barRole = (string) ($barRole ?? ''); $title = (string) ($title ?? ''); $ariaLabel = (string) ($ariaLabel ?? ''); $class = (string) ($class ?? ''); $pct = max(0, min(100, $pct)); @endphp
{{ $label }}
@include('admin.components.mini_bar', [ 'role' => $barRole, 'pct' => $pct, 'title' => $title, ])
{{ $value }}