coolify/resources/views/livewire/project/application/storages/all.blade.php
Andras Bacsai 3589b92ec9 fix
2023-06-16 12:35:40 +02:00

19 lines
746 B
PHP

<div>
<div>
<div class="flex items-center gap-2">
<h2>Storages </h2>
<x-helper
helper="For Preview Deployments, storage has a <span class='text-helper'>-pr-#PRNumber</span> in their
volume
name, example: <span class='text-helper'>-pr-1</span>" />
</div>
<div class="">Persistent storage to preserve data between deployments.</div>
</div>
<div class="flex flex-col gap-2 py-4">
@foreach ($application->persistentStorages as $storage)
<livewire:project.application.storages.show wire:key="storage-{{ $storage->id }}" :storage="$storage" />
@endforeach
</div>
<livewire:project.application.storages.add />
</div>