2023-03-28 20:13:08 +00:00
|
|
|
<x-layout>
|
2023-05-22 20:30:33 +00:00
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex items-center gap-2">
|
2023-06-02 10:34:45 +00:00
|
|
|
<h1>Resources</h1>
|
2023-05-23 08:15:12 +00:00
|
|
|
<livewire:project.delete-environment :environment_id="$environment->id" :resource_count="$environment->applications->count()" />
|
2023-05-22 20:30:33 +00:00
|
|
|
</div>
|
2023-06-07 19:44:16 +00:00
|
|
|
<nav class="flex pt-2 pb-10 text-sm">
|
|
|
|
<ol class="inline-flex items-center">
|
|
|
|
<li class="inline-flex items-center">
|
2023-05-23 07:53:24 +00:00
|
|
|
<a href="{{ route('project.show', ['project_uuid' => request()->route('project_uuid')]) }}">
|
|
|
|
{{ $project->name }}
|
|
|
|
</a>
|
2023-05-22 20:30:33 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-06-07 19:44:16 +00:00
|
|
|
<div class="flex items-center">
|
|
|
|
<svg aria-hidden="true" class="w-4 h-4 mx-1 font-bold text-warning" fill="currentColor"
|
|
|
|
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path fill-rule="evenodd"
|
|
|
|
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
|
|
|
|
clip-rule="evenodd"></path>
|
|
|
|
</svg>
|
|
|
|
{{ request()->route('environment_name') }}
|
|
|
|
</div>
|
2023-05-23 07:53:24 +00:00
|
|
|
</li>
|
2023-06-07 19:44:16 +00:00
|
|
|
</ol>
|
|
|
|
</nav>
|
2023-05-09 09:33:50 +00:00
|
|
|
</div>
|
|
|
|
@if ($environment->applications->count() === 0)
|
2023-05-23 08:15:12 +00:00
|
|
|
<p>No resources found.</p>
|
2023-05-09 09:33:50 +00:00
|
|
|
@endif
|
2023-06-07 13:08:35 +00:00
|
|
|
<div class="grid grid-cols-2 gap-2">
|
2023-05-16 13:27:47 +00:00
|
|
|
@foreach ($environment->applications->sortBy('name') as $application)
|
2023-05-16 07:35:09 +00:00
|
|
|
<a class="box"
|
|
|
|
href="{{ route('project.application.configuration', [$project->uuid, $environment->name, $application->uuid]) }}">
|
|
|
|
{{ $application->name }}
|
|
|
|
</a>
|
2023-03-29 11:13:27 +00:00
|
|
|
@endforeach
|
2023-03-30 15:29:01 +00:00
|
|
|
{{-- @foreach ($environment->databases as $database)
|
2023-03-28 20:13:08 +00:00
|
|
|
<p>
|
|
|
|
<a href="{{ route('project.database', [$project->uuid, $environment->name, $database->uuid]) }}">
|
|
|
|
{{ $database->name }}
|
|
|
|
</a>
|
|
|
|
</p>
|
2023-03-29 11:13:27 +00:00
|
|
|
@endforeach
|
|
|
|
@foreach ($environment->services as $service)
|
2023-03-28 20:13:08 +00:00
|
|
|
<p>
|
|
|
|
<a href="{{ route('project.service', [$project->uuid, $environment->name, $service->uuid]) }}">
|
|
|
|
{{ $service->name }}
|
|
|
|
</a>
|
|
|
|
</p>
|
2023-03-30 15:29:01 +00:00
|
|
|
@endforeach --}}
|
2023-03-29 11:13:27 +00:00
|
|
|
</div>
|
2023-03-28 20:13:08 +00:00
|
|
|
</x-layout>
|