coolify/resources/views/livewire/project/application/environment-variable/show.blade.php

19 lines
789 B
PHP
Raw Normal View History

2023-05-04 22:29:14 +02:00
<div x-data="{ deleteEnvironment: false }">
2023-05-22 22:30:33 +02:00
<form wire:submit.prevent='submit' class="flex flex-col max-w-fit">
2023-05-17 12:14:18 +02:00
<div class="flex gap-2">
2023-05-25 14:05:44 +02:00
<x-forms.input label="Name" id="env.key" />
<x-forms.input label="Value" id="env.value" />
<x-forms.checkbox disabled class="flex-col items-center" id="env.is_build_time" label="Build Variable?" />
2023-05-17 12:14:18 +02:00
</div>
<div class="pt-2">
2023-05-25 14:05:44 +02:00
<x-forms.button type="submit">
2023-05-17 12:14:18 +02:00
Update
2023-05-25 14:05:44 +02:00
</x-forms.button>
<x-forms.button x-on:click.prevent="deleteEnvironment = true">
2023-05-17 12:14:18 +02:00
Delete
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-04 22:29:14 +02:00
</div>
</form>
<x-naked-modal show="deleteEnvironment" message="Are you sure you want to delete {{ $env->key }}?" />
</div>