21 lines
412 B
PHP
21 lines
412 B
PHP
@props([
|
|
'label' => '',
|
|
'link' => null,
|
|
'useNavigate' => true,
|
|
'hover' => false,
|
|
])
|
|
|
|
<li>
|
|
<a
|
|
class="whitespace-nowrap"
|
|
@if($link) href="{{ $link }}" @endif
|
|
@if($useNavigate)
|
|
@if($hover)
|
|
wire:navigate.hover
|
|
@else
|
|
wire:navigate
|
|
@endif
|
|
@endif
|
|
>{{ $label }}</a>
|
|
</li>
|