2024-01-07 15:23:41 +00:00
|
|
|
<div>
|
2024-06-07 09:01:10 +00:00
|
|
|
<x-slot:title>
|
|
|
|
|
{{ data_get_str($project, 'name')->limit(10) }} > Environments | Coolify
|
|
|
|
|
</x-slot>
|
2023-05-23 08:15:12 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2023-06-02 10:34:45 +00:00
|
|
|
<h1>Environments</h1>
|
2024-03-25 10:33:38 +00:00
|
|
|
<x-modal-input buttonTitle="+ Add" title="New Environment">
|
2025-05-14 10:43:23 +00:00
|
|
|
<form class="flex flex-col w-full gap-2 rounded-sm" wire:submit='submit'>
|
2024-11-03 22:49:31 +00:00
|
|
|
<x-forms.input placeholder="production" id="name" label="Name" required />
|
|
|
|
|
<x-forms.button type="submit">
|
|
|
|
|
Save
|
|
|
|
|
</x-forms.button>
|
|
|
|
|
</form>
|
2024-03-25 10:33:38 +00:00
|
|
|
</x-modal-input>
|
2024-10-18 11:48:41 +00:00
|
|
|
<livewire:project.delete-project :disabled="!$project->isEmpty()" :project_id="$project->id" />
|
2023-05-23 08:15:12 +00:00
|
|
|
</div>
|
2024-03-20 11:54:06 +00:00
|
|
|
<div class="text-xs truncate subtitle lg:text-sm">{{ $project->name }}.</div>
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="grid gap-2 lg:grid-cols-2">
|
2024-11-03 22:49:31 +00:00
|
|
|
@forelse ($project->environments->sortBy('created_at') as $environment)
|
2025-01-10 14:20:01 +00:00
|
|
|
<div class="gap-2 border border-transparent box group">
|
2024-05-10 07:56:39 +00:00
|
|
|
<div class="flex flex-1 mx-6">
|
|
|
|
|
<a class="flex flex-col justify-center flex-1"
|
2024-11-22 14:38:54 +00:00
|
|
|
href="{{ route('project.resource.index', ['project_uuid' => $project->uuid, 'environment_uuid' => $environment->uuid]) }}">
|
2024-05-10 07:56:39 +00:00
|
|
|
<div class="font-bold dark:text-white"> {{ $environment->name }}</div>
|
|
|
|
|
<div class="description">
|
|
|
|
|
{{ $environment->description }}</div>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="flex items-center justify-center gap-2 text-xs">
|
|
|
|
|
<a class="font-bold hover:underline"
|
2024-11-22 14:38:54 +00:00
|
|
|
href="{{ route('project.environment.edit', ['project_uuid' => $project->uuid, 'environment_uuid' => $environment->uuid]) }}">
|
2024-05-10 07:56:39 +00:00
|
|
|
Settings
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-12-30 13:47:26 +00:00
|
|
|
</div>
|
2023-05-23 08:15:12 +00:00
|
|
|
@empty
|
|
|
|
|
<p>No environments found.</p>
|
|
|
|
|
@endforelse
|
2023-05-22 13:47:40 +00:00
|
|
|
</div>
|
2024-01-07 15:23:41 +00:00
|
|
|
</div>
|