2023-04-26 10:02:19 +02:00
|
|
|
<nav class="flex gap-4 py-2">
|
2023-05-10 12:22:27 +02:00
|
|
|
<a target="_blank" href="{{ $gitBranchLocation }}">
|
2023-05-08 12:22:45 +02:00
|
|
|
<x-inputs.button>Open on Git ↗️</x-inputs.button>
|
|
|
|
</a>
|
2023-05-09 09:54:43 +02:00
|
|
|
<a
|
|
|
|
href="{{ route('project.application.configuration', [
|
|
|
|
'project_uuid' => Route::current()->parameters()['project_uuid'],
|
|
|
|
'application_uuid' => Route::current()->parameters()['application_uuid'],
|
|
|
|
'environment_name' => Route::current()->parameters()['environment_name'],
|
|
|
|
]) }}">
|
2023-05-08 12:22:45 +02:00
|
|
|
<x-inputs.button>Configuration</x-inputs.button>
|
|
|
|
</a>
|
2023-05-09 09:54:43 +02:00
|
|
|
<a
|
|
|
|
href="{{ route('project.application.deployments', [
|
|
|
|
'project_uuid' => Route::current()->parameters()['project_uuid'],
|
|
|
|
'application_uuid' => Route::current()->parameters()['application_uuid'],
|
|
|
|
'environment_name' => Route::current()->parameters()['environment_name'],
|
|
|
|
]) }}">
|
2023-05-08 12:22:45 +02:00
|
|
|
<x-inputs.button>Deployments</x-inputs.button>
|
|
|
|
</a>
|
2023-04-25 11:01:56 +02:00
|
|
|
<livewire:project.application.deploy :applicationId="$applicationId" />
|
2023-04-19 12:42:15 +02:00
|
|
|
</nav>
|