2023-06-30 08:49:00 +00:00
|
|
|
<div class="flex items-end gap-4 py-2 border-b-2 border-solid border-coolgray-200">
|
2023-05-22 13:47:40 +00:00
|
|
|
<a class="{{ request()->routeIs('project.application.configuration') ? 'text-white' : '' }}"
|
2023-06-30 08:49:00 +00:00
|
|
|
href="{{ route('project.application.configuration', $parameters) }}">
|
2023-05-22 20:30:33 +00:00
|
|
|
<button>Configuration</button>
|
2023-05-08 10:22:45 +00:00
|
|
|
</a>
|
2023-05-22 13:47:40 +00:00
|
|
|
<a class="{{ request()->routeIs('project.application.deployments') ? 'text-white' : '' }}"
|
2023-06-30 08:49:00 +00:00
|
|
|
href="{{ route('project.application.deployments', $parameters) }}">
|
2023-05-22 20:30:33 +00:00
|
|
|
<button>Deployments</button>
|
2023-05-16 18:47:59 +00:00
|
|
|
</a>
|
2023-05-18 13:19:23 +00:00
|
|
|
<div class="flex-1"></div>
|
2023-06-30 08:49:00 +00:00
|
|
|
<x-applications.links :application="$application" />
|
|
|
|
<x-applications.actions :application="$application" />
|
|
|
|
</div>
|