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

18 lines
669 B
PHP
Raw Normal View History

2023-05-05 07:28:00 +00:00
<div class="flex flex-col gap-2">
2023-05-31 08:19:29 +00:00
<div>
<h2 class="pb-0">Environment Variables</h2>
<div class="text-sm">Environment (secrets) configuration. You can set variables for your Preview Deployments as
well
here.</div>
</div>
2023-05-17 10:14:18 +00:00
@forelse ($application->environment_variables as $env)
2023-05-05 10:08:38 +00:00
<livewire:project.application.environment-variable.show wire:key="environment-{{ $env->id }}"
:env="$env" />
2023-05-17 10:14:18 +00:00
@empty
<p>There are no environment variables added for this application.</p>
@endforelse
2023-05-16 18:47:59 +00:00
<div class="pt-10">
<livewire:project.application.environment-variable.add />
</div>
2023-05-05 07:28:00 +00:00
</div>