28 lines
923 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<div class="relative">
<button type="button"
@if ($trigger->attributes->has('override') && in_array('class', explode(',', $trigger->attributes->get('override'))))
class="{{ $trigger->attributes->get('class') }}"
@else
class="w-9 h-9 flex items-center justify-center px-2 py-2 bg-gray-100 hover:bg-gray-200 rounded-xl text-purple text-sm font-medium leading-6"
@endif
data-dropdown-toggle="{{ $id }}"
{{ $trigger->attributes }}
>
{!! $trigger !!}
</button>
2022-06-03 08:59:21 +03:00
<div
id="{{ $id }}"
class="absolute right-0 mt-3 py-2 bg-white rounded-md border border-gray-200 shadow-xl z-20 hidden"
@if ($attributes->has('style'))
style="{{ $attributes->get('style') }}"
@else
style="left: auto; min-width: 10rem;"
@endif
>
2022-06-01 10:15:55 +03:00
@stack('button_dropdown_start')
{{ $slot }}
</div>
</div>