This commit is contained in:
Andras Bacsai
2023-05-17 12:14:18 +02:00
parent 8e5adb47a0
commit 14d7e9e7f9
11 changed files with 62 additions and 54 deletions

View File

@@ -1,9 +1,11 @@
<div class="flex flex-col gap-2">
<h3>Environment Variables</h3>
@foreach ($application->environment_variables as $env)
@forelse ($application->environment_variables as $env)
<livewire:project.application.environment-variable.show wire:key="environment-{{ $env->id }}"
:env="$env" />
@endforeach
@empty
<p>There are no environment variables added for this application.</p>
@endforelse
<div class="pt-10">
<livewire:project.application.environment-variable.add />
</div>