2023-05-05 10:08:38 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
2023-05-18 11:26:35 +00:00
|
|
|
<h2>Storages</h2>
|
2023-05-05 10:08:38 +00:00
|
|
|
@forelse ($application->persistentStorages as $storage)
|
2023-05-05 11:50:29 +00:00
|
|
|
<livewire:project.application.storages.show wire:key="storage-{{ $storage->id }}" :storage="$storage" />
|
2023-05-05 10:08:38 +00:00
|
|
|
@empty
|
2023-05-17 10:14:18 +00:00
|
|
|
<p>There are no persistent storages attached for this application.</p>
|
2023-05-05 10:08:38 +00:00
|
|
|
@endforelse
|
|
|
|
<livewire:project.application.storages.add />
|
|
|
|
</div>
|