lasthourcloud/resources/views/components/naked-modal.blade.php

18 lines
691 B
PHP
Raw Normal View History

2023-05-04 20:29:14 +00:00
@props([
'show' => null,
'message' => 'Are you sure you want to delete this?',
'action' => 'delete',
])
2023-05-18 11:26:35 +00:00
<div x-cloak x-show="{{ $show }}" x-transition class="modal modal-open">
2023-06-02 10:34:45 +00:00
<div class="relative text-center rounded modal-box bg-coolgray-100">
2023-06-05 10:13:13 +00:00
<div class="pb-8 text-base text-white">{{ $message }}</div>
2023-06-02 10:34:45 +00:00
<div class="flex justify-center gap-4 text-xs">
<x-forms.button class="w-32" isWarning wire:click='{{ $action }}'
x-on:click="{{ $show }} = false">
2023-05-18 11:26:35 +00:00
Yes
2023-05-25 12:05:44 +00:00
</x-forms.button>
2023-06-02 10:34:45 +00:00
<x-forms.button class="w-32" x-on:click="{{ $show }} = false">No</x-forms.button>
2023-05-04 20:29:14 +00:00
</div>
</div>
</div>