2023-07-13 11:16:24 +00:00
|
|
|
<button @disabled($disabled) {{ $attributes->merge(['class' => $defaultClass]) }}
|
2023-08-11 18:19:42 +00:00
|
|
|
{{ $attributes->merge(['type' => 'button']) }}
|
|
|
|
@isset($confirm)
|
2023-08-08 09:51:36 +00:00
|
|
|
x-on:click="toggleConfirmModal('{{ $confirm }}', '{{ explode('(', $confirmAction)[0] }}')"
|
|
|
|
@endisset
|
2023-08-11 18:19:42 +00:00
|
|
|
@isset($confirmAction)
|
2023-08-08 09:51:36 +00:00
|
|
|
x-on:{{ explode('(', $confirmAction)[0] }}.window="$wire.{{ explode('(', $confirmAction)[0] }}"
|
|
|
|
@endisset
|
2023-08-11 18:19:42 +00:00
|
|
|
@if ($isModal) onclick="{{ $modalId }}.showModal()" @endif>
|
2023-05-22 08:34:00 +00:00
|
|
|
|
2023-07-14 10:14:32 +00:00
|
|
|
{{ $slot }}
|
2023-07-13 11:16:24 +00:00
|
|
|
@if ($attributes->get('type') === 'submit')
|
|
|
|
<span wire:target="submit" wire:loading.delay class="loading loading-xs text-warning loading-spinner"></span>
|
|
|
|
@else
|
2023-09-01 09:35:40 +00:00
|
|
|
@if ($attributes->whereStartsWith('wire:click')->first())
|
|
|
|
<span wire:target="{{ $attributes->whereStartsWith('wire:click')->first() }}" wire:loading.delay
|
2023-08-30 16:23:55 +00:00
|
|
|
class="loading loading-xs loading-spinner"></span>
|
|
|
|
@endif
|
2023-07-13 11:16:24 +00:00
|
|
|
@endif
|
|
|
|
</button>
|