coolify/resources/views/livewire/project/application/storages/all.blade.php

10 lines
392 B
PHP
Raw Normal View History

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