sackey e839d40a99
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Initial commit
2025-07-30 17:15:50 +00:00

17 lines
427 B
PHP

@props([
'shortcut' => null,
'name' => null,
])
<div
{{ $attributes->class('contents') }}
x-data
x-on:click="$el.querySelector('button[disabled]') || $dispatch('modal-show', { name: '{{ $name }}' })"
@if ($shortcut)
x-on:keydown.{{ $shortcut }}.document="$event.preventDefault(); $dispatch('modal-show', { name: '{{ $name }}' })"
@endif
data-flux-modal-trigger
>
{{ $slot }}
</div>