gps_system/resources/views/flux/modal/trigger.blade.php
sackey 6b878bb0a0
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Initial commit
2025-09-12 16:19:56 +00:00

19 lines
434 B
PHP

@pure
@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>