21 lines
		
	
	
		
			963 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			963 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <button @disabled($disabled) {{ $attributes->merge(['class' => $defaultClass]) }}
 | |
|     {{ $attributes->merge(['type' => 'button']) }}
 | |
|     @isset($confirm)
 | |
|             x-on:click="toggleConfirmModal('{{ $confirm }}', '{{ explode('(', $confirmAction)[0] }}')"
 | |
|         @endisset
 | |
|     @isset($confirmAction)
 | |
|             x-on:{{ explode('(', $confirmAction)[0] }}.window="$wire.{{ explode('(', $confirmAction)[0] }}"
 | |
|         @endisset
 | |
|     @if ($isModal) onclick="{{ $modalId }}.showModal()" @endif>
 | |
| 
 | |
|     {{ $slot }}
 | |
|     @if ($attributes->get('type') === 'submit')
 | |
|         <span wire:target="submit" wire:loading.delay class="loading loading-xs text-warning loading-spinner"></span>
 | |
|     @else
 | |
|         @if ($attributes->whereStartsWith('wire:click')->first())
 | |
|             <span wire:target="{{ $attributes->whereStartsWith('wire:click')->first() }}" wire:loading.delay
 | |
|                 class="loading loading-xs loading-spinner"></span>
 | |
|         @endif
 | |
|     @endif
 | |
| </button>
 |