lasthourcloud/resources/views/livewire/project/application/environment-variable/all.blade.php
Andras Bacsai 539f82eb08 ui fixes
2023-05-05 09:28:00 +02:00

11 lines
448 B
PHP

<div class="flex flex-col gap-2">
<h3>Environment Variables</h3>
@forelse ($application->environment_variables as $env)
<livewire:project.application.environment-variable.show wire:key="item-{{ $env->id }}" :env="$env" />
@empty
<p>There are no environment variables for this application.</p>
@endforelse
<h4>Add new environment variable</h4>
<livewire:project.application.environment-variable.add />
</div>