13 lines
526 B
PHP
Raw Normal View History

2023-05-31 10:19:29 +02:00
<div>
2023-06-02 12:34:45 +02:00
<h2>Storages</h2>
2023-05-31 10:19:29 +02:00
<div class="text-sm">Persistent storage to preserve data between deployments.</div>
<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 12:08:38 +02:00
<livewire:project.application.storages.add />
</div>