coolify/resources/views/livewire/project/delete-environment.blade.php
Andras Bacsai 8f3ef2b1c5 fixes
2023-06-16 15:56:25 +02:00

8 lines
339 B
PHP

<div x-data="{ deleteEnvironment: false }">
<x-naked-modal show="deleteEnvironment" title="Delete Environment"
message='This environment will be deleted. It is not reversible. <br>Please think again.' />
<x-forms.button x-on:click.prevent="deleteEnvironment = true">
Delete Environment
</x-forms.button>
</div>