40 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div>
 | |
|     <h1>Project: {{ data_get($project, 'name') }}</h1>
 | |
|     <div class="pb-10">Edit project details here.</div>
 | |
|     <form wire:submit='submit' class="flex flex-col gap-2 pb-10">
 | |
|         <div class="flex items-end gap-2">
 | |
|             <h2>General</h2>
 | |
|             <x-forms.button type="submit">Save</x-forms.button>
 | |
|             <livewire:project.delete-project :disabled="$project->resource_count() > 0" :project_id="$project->id" />
 | |
|         </div>
 | |
|         <div class="flex gap-2">
 | |
|             <x-forms.input label="Name" id="project.name" />
 | |
|             <x-forms.input label="Description" id="project.description" />
 | |
|         </div>
 | |
|     </form>
 | |
|     <div class="flex gap-2">
 | |
|         <h2>Shared Variables</h2>
 | |
|         <x-slide-over>
 | |
|             <x-slot:title>New Shared Variable</x-slot:title>
 | |
|             <x-slot:content>
 | |
|                 <livewire:project.shared.environment-variable.add />
 | |
|             </x-slot:content>
 | |
|             <button @click="slideOverOpen=true"
 | |
|                 class="font-normal text-white normal-case border-none rounded btn btn-primary btn-sm no-animation">+
 | |
|                 Add</button>
 | |
|         </x-slide-over>
 | |
|     </div>
 | |
|     <div class="flex items-center gap-2 pb-4">You can use these variables anywhere with <span
 | |
|             class="text-warning">@{{ project.VARIABLENAME }}</span><x-helper
 | |
|             helper="More info in upstream docs <a class='text-white underline' href='https://coolify.io/docs/environment-variables#shared-variables' target='_blank'>here</a>."></x-helper>
 | |
|     </div>
 | |
|     <div class="flex flex-col gap-2">
 | |
|         @forelse ($project->environment_variables->sort()->sortBy('real_value') as $env)
 | |
|             <livewire:project.shared.environment-variable.show wire:key="environment-{{ $env->id }}"
 | |
|                 :env="$env" type="project" />
 | |
|         @empty
 | |
|             <div class="text-neutral-500">No environment variables found.</div>
 | |
|         @endforelse
 | |
|     </div>
 | |
| </div>
 |