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

23 lines
909 B
PHP
Raw Normal View History

<div>
<h2>Danger Zone</h2>
<div class="">Woah. I hope you know what are you doing.</div>
<h4 class="pt-4">Delete Resource</h4>
2024-08-31 14:12:08 +00:00
<div class="pb-4">This will stop your containers, delete all related data, etc. Beware! There is no coming back!</div>
<x-modal-confirmation
2024-08-31 14:12:08 +00:00
title="Confirm Resource Deletion?"
buttonTitle="Delete Resource"
isErrorButton
type="button"
submitAction="delete"
buttonTitle="Delete Resource"
2024-08-31 19:10:44 +00:00
:checkboxes="$checkboxes"
2024-08-28 11:31:09 +00:00
:actions="[
'All containers of this resource will be stopped and permanently deleted.'
2024-08-31 14:12:08 +00:00
]"
confirmationText="{{ $resourceName }}"
confirmationLabel="Please confirm the execution of the actions by entering the Resource Name below"
shortConfirmationLabel="Resource Name"
step3ButtonText="Permanently Delete Resource"
/>
2024-08-27 10:43:59 +00:00
</div>