2024-01-07 15:23:41 +00:00
|
|
|
<div>
|
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">
|
|
|
|
<livewire:project.add-environment :project="$project" />
|
|
|
|
</x-modal-input>
|
2024-01-31 13:18:59 +00:00
|
|
|
<livewire:project.delete-project :disabled="$project->resource_count() > 0" :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">
|
2023-05-23 08:15:12 +00:00
|
|
|
@forelse ($project->environments as $environment)
|
2023-12-30 13:47:26 +00:00
|
|
|
<div class="gap-2 border border-transparent cursor-pointer box group" x-data
|
|
|
|
x-on:click="goto('{{ $project->uuid }}','{{ $environment->name }}')">
|
2024-03-24 15:00:25 +00:00
|
|
|
<a class="flex flex-col justify-center flex-1 mx-6 hover:no-underline"
|
2024-01-07 15:23:41 +00:00
|
|
|
href="{{ route('project.resource.index', [$project->uuid, $environment->name]) }}">
|
2024-03-24 15:00:25 +00:00
|
|
|
<div class="font-bold dark:text-white"> {{ $environment->name }}</div>
|
|
|
|
<div class="description">
|
2023-12-30 13:47:26 +00:00
|
|
|
{{ $environment->description }}</div>
|
|
|
|
</a>
|
2024-03-25 15:42:41 +00:00
|
|
|
<div class="flex items-center text-xs">
|
2024-03-25 10:33:38 +00:00
|
|
|
<a class="mx-4 font-bold hover:underline"
|
2023-12-30 13:47:26 +00:00
|
|
|
href="{{ route('project.environment.edit', ['project_uuid' => data_get($project, 'uuid'), 'environment_name' => $environment->name]) }}">
|
2024-03-24 15:00:25 +00:00
|
|
|
Settings
|
2023-12-30 13:47:26 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-05-23 08:15:12 +00:00
|
|
|
@empty
|
|
|
|
<p>No environments found.</p>
|
|
|
|
@endforelse
|
2023-12-30 13:47:26 +00:00
|
|
|
<script>
|
|
|
|
function goto(projectUuid, environmentName) {
|
|
|
|
window.location.href = '/project/' + projectUuid + '/' + environmentName;
|
|
|
|
}
|
|
|
|
</script>
|
2023-05-22 13:47:40 +00:00
|
|
|
</div>
|
2024-01-07 15:23:41 +00:00
|
|
|
</div>
|