@props([ /** * Heroicon-Name (ohne flux:icon Prefix), z.B. user, archive-box, newspaper. * Wird unten via flux:icon gerendert. */ 'icon' => 'information-circle', /** Titel (fett, dunkel) */ 'title' => '', /** Vollständigkeitswert in Prozent (0–100) für die Progress-Bar */ 'percent' => null, /** Ziel-URL der Aktion (Pflicht für ein klickbares Hint) */ 'href' => null, /** Optionaler Action-Text — wenn null wird `action`-Slot oder „Öffnen“ verwendet */ 'action' => null, /** Wenn `true`, wird das Hint als Volt-`wire:navigate`-Link gerendert */ 'navigate' => true, ]) @php $percent = $percent !== null ? max(0, min(100, (int) $percent)) : null; @endphp
{{ $slot }}
@if ($href) {{ $action ?? (isset($actionSlot) ? $actionSlot : __('Öffnen')) }} → @endif