coolify/resources/views/livewire/project/shared/danger.blade.php

17 lines
623 B
PHP
Raw Normal View History

2023-07-13 13:16:24 +02:00
<div>
2023-08-07 22:14:21 +02:00
<x-modal yesOrNo modalId="{{ $modalId }}" modalTitle="Delete Resource">
2023-07-13 13:16:24 +02:00
<x-slot:modalBody>
2023-08-07 22:14:21 +02:00
<p>This resource will be deleted. It is not reversible. <br>Please think again.</p>
2023-07-13 13:16:24 +02:00
</x-slot:modalBody>
</x-modal>
2023-08-09 16:47:24 +02:00
<h2>Danger Zone</h2>
2023-06-16 12:35:40 +02:00
<div class="">Woah. I hope you know what are you doing.</div>
2023-08-07 22:14:21 +02:00
<h4 class="pt-4">Delete Resource</h4>
2023-06-16 15:56:25 +02:00
<div class="pb-4">This will stop your containers, delete all related data, etc. Beware! There is no coming
2023-06-02 12:34:45 +02:00
back!
2023-05-31 10:19:29 +02:00
</div>
2023-07-13 13:16:24 +02:00
<x-forms.button isError isModal modalId="{{ $modalId }}">
Delete
</x-forms.button>
2023-05-18 13:26:35 +02:00
</div>