This commit is contained in:
Andras Bacsai
2023-05-05 12:08:38 +02:00
parent dcc1c72882
commit 96b9f8213c
16 changed files with 175 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
<div class="flex flex-col gap-2">
<h3>Persistent Storages</h3>
@forelse ($application->persistentStorages as $storage)
<livewire:project.application.storages.show :storage="$storage" />
@empty
<p>There are no persistent storage attached for this application.</p>
@endforelse
<h4>Add new environment variable</h4>
<livewire:project.application.storages.add />
</div>