14 lines
575 B
PHP
14 lines
575 B
PHP
<flux:modal.trigger name="confirmation-modal">
|
|
<flux:tooltip content="{{ $title }}">
|
|
<flux:button variant="primary" color="{{ $confirmButtonColor }}" icon="{{ $icon }}" size="sm"
|
|
wire:click="$dispatch('fn:confirmAction', {
|
|
id : '{{ $id }}',
|
|
message: '{{ $message }}',
|
|
confirmButtonText: '{{ $confirmButtonText }}',
|
|
target: '{{ $target }}',
|
|
confirmButtonColor : '{{ $confirmButtonColor }}'
|
|
})">
|
|
</flux:button>
|
|
</flux:tooltip>
|
|
</flux:modal.trigger>
|