coolify/resources/views/livewire/project/delete-project.blade.php

13 lines
531 B
PHP
Raw Normal View History

2024-08-30 18:00:04 +00:00
<x-modal-confirmation
title="Confirm Project Deletion?"
buttonTitle="Delete Project"
isErrorButton
2024-08-31 13:07:50 +00:00
submitAction="delete"
2024-09-02 17:27:21 +00:00
:actions="['This will delete the selected project', 'All Environments inside the project will be deleted as well.']"
2024-08-30 18:00:04 +00:00
confirmationLabel="Please confirm the execution of the actions by entering the Project Name below"
shortConfirmationLabel="Project Name"
2024-08-31 13:07:50 +00:00
confirmationText="{{ $projectName }}"
2024-09-02 17:27:21 +00:00
:confirmWithPassword="false"
step2ButtonText="Permanently Delete Project"
2024-08-30 18:00:04 +00:00
/>