coolify/resources/views/livewire/project/shared/storages/show.blade.php

37 lines
1.7 KiB
PHP
Raw Normal View History

2023-08-07 22:14:21 +02:00
<div>
2023-12-07 19:06:32 +01:00
<form wire:submit='submit' class="flex flex-col gap-2 xl:items-end xl:flex-row">
2023-09-22 11:23:49 +02:00
@if ($isReadOnly)
@if ($isFirst)
<x-forms.input id="storage.name" label="Volume Name" required readonly />
<x-forms.input id="storage.host_path" label="Source Path (on host)" readonly />
<x-forms.input id="storage.mount_path" label="Destination Path (in container)" required readonly />
@else
<x-forms.input id="storage.name" required readonly />
<x-forms.input id="storage.host_path" readonly />
<x-forms.input id="storage.mount_path" required readonly />
@endif
2023-08-07 22:14:21 +02:00
@else
@if ($isFirst)
<x-forms.input id="storage.name" label="Volume Name" required />
<x-forms.input id="storage.host_path" label="Source Path (on host)" />
<x-forms.input id="storage.mount_path" label="Destination Path (in container)" required />
@else
<x-forms.input id="storage.name" required />
<x-forms.input id="storage.host_path" />
<x-forms.input id="storage.mount_path" required />
@endif
2023-08-07 22:14:21 +02:00
<div class="flex gap-2">
<x-forms.button type="submit">
Update
</x-forms.button>
2024-01-31 16:14:12 +01:00
<x-new-modal isErrorButton buttonTitle="Delete">
This storage will be deleted <span class="font-bold text-warning">{{ $storage->name }}</span>. It
is
not
reversible. <br>Please think again.
</x-new-modal>
2023-08-07 22:14:21 +02:00
</div>
@endif
</form>
</div>