You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
319 B
16 lines
319 B
@props([
|
|
'label' => '',
|
|
'icon' => '',
|
|
'action' => 'javascript:void(0)',
|
|
'iconProperty' => [],
|
|
])
|
|
|
|
<li>
|
|
<x-link
|
|
{{ $attributes->merge(['class' => 'dropdown-item']) }}
|
|
href="{{ $action }}"
|
|
:label="$label"
|
|
:icon="$icon"
|
|
:icon-config="$iconProperty"
|
|
/>
|
|
</li>
|
|
|