mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-14 03:19:51 +00:00
13e94a499d
Move standalone Docker destination resource listings out of the general settings view and add a searchable resources page with team-scoped tests.
15 lines
749 B
PHP
15 lines
749 B
PHP
@if ($destination->getMorphClass() === 'App\\Models\\StandaloneDocker')
|
|
<div class="navbar-main">
|
|
<nav class="flex shrink-0 gap-6 items-center whitespace-nowrap scrollbar min-h-10">
|
|
<a class="{{ request()->routeIs('destination.show') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('destination.show', ['destination_uuid' => $destination->uuid]) }}">
|
|
General
|
|
</a>
|
|
<a class="{{ request()->routeIs('destination.resources') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('destination.resources', ['destination_uuid' => $destination->uuid]) }}">
|
|
Resources
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
@endif
|