coolify/resources/views/components/inputs/button.blade.php

14 lines
717 B
PHP
Raw Normal View History

2023-05-03 14:09:10 +02:00
@props([
2023-05-03 14:36:53 +02:00
'defaultClass' => 'text-white bg-violet-500 hover:bg-violet-600',
2023-05-03 14:09:10 +02:00
'confirm' => null,
'confirmAction' => null,
])
<button {{ $attributes }} {{ $attributes->merge(['class' => $defaultClass]) }}
@if ($attributes->whereStartsWith('wire:click')) wire:target="{{ $attributes->whereStartsWith('wire:click')->first() }}"
wire:loading.class="text-black bg-green-500" wire:loading.attr="disabled" wire:loading.class.remove="{{ $defaultClass }} {{ $attributes->whereStartsWith('class')->first() }}" @endif
@isset($confirm) x-on:click="toggleConfirmModal('{{ $confirm }}')" @endisset
@isset($confirmAction) @confirm.window="$wire.{{ $confirmAction }}()" @endisset>
{{ $slot }}
</button>