2023-05-31 08:19:29 +00:00
|
|
|
<div>
|
2023-06-05 10:07:55 +00:00
|
|
|
<div>
|
|
|
|
<h2>Storages</h2>
|
|
|
|
<div class="text-sm">Persistent storage to preserve data between deployments.</div>
|
|
|
|
<div class="text-sm">Preview Deployments has a <span class='text-helper'>-pr-#PRNumber</span> in their
|
|
|
|
volume
|
|
|
|
name, example: <span class='text-helper'>-pr-1</span>.</div>
|
|
|
|
</div>
|
2023-05-31 08:19:29 +00:00
|
|
|
<div class="flex flex-col gap-2 py-4">
|
|
|
|
@forelse ($application->persistentStorages as $storage)
|
|
|
|
<livewire:project.application.storages.show wire:key="storage-{{ $storage->id }}" :storage="$storage" />
|
|
|
|
@empty
|
|
|
|
<p>There are no persistent storages attached for this application.</p>
|
|
|
|
@endforelse
|
|
|
|
</div>
|
2023-05-05 10:08:38 +00:00
|
|
|
<livewire:project.application.storages.add />
|
|
|
|
</div>
|