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.
18 lines
517 B
18 lines
517 B
@props([
|
|
'title' => '',
|
|
'icon' => null,
|
|
'iconProperty' => [],
|
|
'useToggle' => false
|
|
])
|
|
<div class="dropdown">
|
|
<button {{ $attributes->merge(['class' => 'btn' . ($useToggle ? ' dropdown-toggle' : '')]) }}
|
|
type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
@if($icon)
|
|
{{ svg($icon, $iconProperty) }}
|
|
@endif
|
|
{{ __($title) }}
|
|
</button>
|
|
<ul class="dropdown-menu dropdown-menu-end">
|
|
{{ $slot }}
|
|
</ul>
|
|
</div>
|
|
|