2023-04-26 11:01:09 +00:00
|
|
|
<x-layout>
|
2023-05-22 20:30:33 +00:00
|
|
|
<h1 class="py-0">Deployment</h1>
|
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">
|
|
|
|
<a
|
2023-05-23 10:54:30 +00:00
|
|
|
href="{{ route('project.show', ['project_uuid' => request()->route('project_uuid')]) }}">{{ $application->environment->project->name }}</a>
|
2023-05-22 20:30:33 +00:00
|
|
|
</li>
|
2023-06-07 19:44:16 +00:00
|
|
|
<li>
|
|
|
|
<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>
|
|
|
|
<a
|
|
|
|
href="{{ route('project.resources', ['environment_name' => request()->route('environment_name'), 'project_uuid' => request()->route('project_uuid')]) }}">{{ request()->route('environment_name') }}</a>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<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>
|
|
|
|
<span>{{ data_get($application, 'name') }}</span>
|
|
|
|
</div>
|
2023-05-22 20:30:33 +00:00
|
|
|
</li>
|
2023-06-05 10:07:55 +00:00
|
|
|
<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>
|
|
|
|
<span>
|
|
|
|
<livewire:project.application.status :application="$application" />
|
|
|
|
</span>
|
|
|
|
</div>
|
2023-06-05 10:07:55 +00:00
|
|
|
</li>
|
2023-06-07 19:44:16 +00:00
|
|
|
</ol>
|
|
|
|
</nav>
|
2023-05-17 07:26:50 +00:00
|
|
|
<x-applications.navbar :application="$application" />
|
2023-05-31 10:38:36 +00:00
|
|
|
<livewire:project.application.deployment-logs :activity="$activity" :application="$application" :deployment_uuid="$deployment_uuid" />
|
2023-04-26 11:01:09 +00:00
|
|
|
</x-layout>
|