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>
|
2025-08-26 08:27:31 +00:00
|
|
|
@can('update', $project)
|
|
|
|
|
<x-modal-input buttonTitle="+ Add" title="New Environment">
|
|
|
|
|
<form class="flex flex-col w-full gap-2 rounded-sm" wire:submit='submit'>
|
|
|
|
|
<x-forms.input placeholder="production" id="name" label="Name" required />
|
2025-08-24 15:14:55 +00:00
|
|
|
<x-forms.button type="submit">
|
|
|
|
|
Save
|
|
|
|
|
</x-forms.button>
|
2025-08-26 08:27:31 +00:00
|
|
|
</form>
|
|
|
|
|
</x-modal-input>
|
|
|
|
|
@endcan
|
2025-08-24 15:14:55 +00:00
|
|
|
@can('delete', $project)
|
|
|
|
|
<livewire:project.delete-project :disabled="!$project->isEmpty()" :project_id="$project->id" />
|
|
|
|
|
@endcan
|
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-11-28 12:55:54 +00:00
|
|
|
<div class="gap-2 coolbox group">
|
2024-05-10 07:56:39 +00:00
|
|
|
<div class="flex flex-1 mx-6">
|
2025-12-17 11:09:13 +00:00
|
|
|
<a class="flex flex-col justify-center flex-1" {{ wireNavigate() }}
|
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>
|
2025-08-26 08:27:31 +00:00
|
|
|
@can('update', $project)
|
|
|
|
|
<div class="flex items-center justify-center gap-2 text-xs">
|
2025-12-17 11:09:13 +00:00
|
|
|
<a class="font-bold hover:underline" {{ wireNavigate() }}
|
2025-08-26 08:27:31 +00:00
|
|
|
href="{{ route('project.environment.edit', ['project_uuid' => $project->uuid, 'environment_uuid' => $environment->uuid]) }}">
|
|
|
|
|
Settings
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
@endcan
|
2024-05-10 07:56:39 +00:00
|
|
|
</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>
|