2023-11-06 11:31:02 +00:00
|
|
|
<div>
|
|
|
|
|
@if ($server->id !== 0)
|
|
|
|
|
<h2 class="pt-4">Danger Zone</h2>
|
|
|
|
|
<div class="">Woah. I hope you know what are you doing.</div>
|
|
|
|
|
<h4 class="pt-4">Delete Server</h4>
|
|
|
|
|
<div class="pb-4">This will remove this server from Coolify. Beware! There is no coming
|
|
|
|
|
back!
|
|
|
|
|
</div>
|
2023-11-27 08:39:43 +00:00
|
|
|
@if ($server->definedResources()->count() > 0)
|
2024-02-26 09:25:21 +00:00
|
|
|
<div class="pb-2 text-red-500">You need to delete all resources before deleting this server.</div>
|
2024-09-23 06:58:04 +00:00
|
|
|
<x-modal-confirmation title="Confirm Server Deletion?" isErrorButton buttonTitle="Delete" submitAction="delete"
|
|
|
|
|
:actions="['This server will be permanently deleted.']" confirmationText="{{ $server->name }}"
|
2024-09-04 18:06:22 +00:00
|
|
|
confirmationLabel="Please confirm the execution of the actions by entering the Server Name below"
|
2024-09-23 06:58:04 +00:00
|
|
|
shortConfirmationLabel="Server Name" step3ButtonText="Permanently Delete" />
|
2023-11-06 17:04:18 +00:00
|
|
|
@else
|
2024-09-23 06:58:04 +00:00
|
|
|
<x-modal-confirmation title="Confirm Server Deletion?" isErrorButton buttonTitle="Delete"
|
|
|
|
|
submitAction="delete" :actions="['This server will be permanently deleted.']" confirmationText="{{ $server->name }}"
|
2024-09-04 18:06:22 +00:00
|
|
|
confirmationLabel="Please confirm the execution of the actions by entering the Server Name below"
|
2024-09-27 13:45:59 +00:00
|
|
|
shortConfirmationLabel="Server Name" step2ButtonText="Continue" step3ButtonText="Permanently Delete" />
|
2023-11-06 17:04:18 +00:00
|
|
|
@endif
|
2023-11-06 11:31:02 +00:00
|
|
|
@endif
|
|
|
|
|
</div>
|