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

25 lines
972 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>
2023-06-02 10:34:45 +00:00
<h2>Environment Variables</h2>
2023-06-16 10:35:40 +00:00
<div class="">Environment (secrets) variables for normal deployments.</div>
2023-05-31 08:19:29 +00:00
</div>
2023-06-05 10:07:55 +00:00
@foreach ($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-06-05 10:07:55 +00:00
@endforeach
<div class="pt-2 pb-8">
2023-06-16 10:00:36 +00:00
<livewire:project.application.environment-variable.add />
2023-05-16 18:47:59 +00:00
</div>
2023-06-05 10:07:55 +00:00
<div>
<h3>Preview Deployments</h3>
2023-06-16 10:35:40 +00:00
<div class="">Environment (secrets) variables for Preview Deployments.</div>
2023-06-05 10:07:55 +00:00
</div>
@foreach ($application->environment_variables_preview as $env)
<livewire:project.application.environment-variable.show wire:key="environment-{{ $env->id }}"
:env="$env" />
@endforeach
<div class="pt-2 pb-8">
<livewire:project.application.environment-variable.add is_preview="true" />
</div>
2023-05-05 07:28:00 +00:00
</div>