@props([ 'icon' => null, 'label' => null, 'color' => null, 'route' => null, 'url' => null, 'href' => '#', 'click' => null, 'confirm' => false, ]) @php if ($route) $href = route($route); else if ($url) $href = url($url); $attributes = $attributes->class([ 'text-' . $color => $color, ])->merge([ 'href' => $href, 'wire:click.prevent' => $click, 'onclick' => $confirm ? 'confirm("Êtes vous sûr(e) de vouloir ' . (is_string($confirm) ? $confirm : 'effectuer cette action') . '?") || event.stopImmediatePropagation()' : null, ]); @endphp {{ $label ?? $slot }}