coolify/resources/views/livewire/project/application/environment-variable/all.blade.php

13 lines
470 B
PHP
Raw Normal View History

2023-05-05 09:28:00 +02:00
<div class="flex flex-col gap-2">
<h3>Environment Variables</h3>
2023-05-17 12:14:18 +02:00
@forelse ($application->environment_variables as $env)
2023-05-05 12:08:38 +02:00
<livewire:project.application.environment-variable.show wire:key="environment-{{ $env->id }}"
:env="$env" />
2023-05-17 12:14:18 +02:00
@empty
<p>There are no environment variables added for this application.</p>
@endforelse
2023-05-16 20:47:59 +02:00
<div class="pt-10">
<livewire:project.application.environment-variable.add />
</div>
2023-05-05 09:28:00 +02:00
</div>