coolify/resources/views/components/databases/navbar.blade.php

39 lines
2.1 KiB
PHP
Raw Normal View History

2023-08-07 18:46:40 +02:00
<div class="navbar-main">
<a class="{{ request()->routeIs('project.database.configuration') ? 'text-white' : '' }}"
2023-08-11 20:19:42 +02:00
href="{{ route('project.database.configuration', $parameters) }}">
2023-08-07 18:46:40 +02:00
<button>Configuration</button>
</a>
2023-10-02 13:38:16 +02:00
<a class="{{ request()->routeIs('project.database.logs') ? 'text-white' : '' }}"
href="{{ route('project.database.logs', $parameters) }}">
<button>Logs</button>
</a>
2023-10-19 13:46:15 +02:00
@if ($database->getMorphClass() === 'App\Models\StandalonePostgresql' || $database->getMorphClass() === 'App\Models\StandaloneMongodb')
2023-10-13 09:39:40 +02:00
<a class="{{ request()->routeIs('project.database.backups.all') ? 'text-white' : '' }}"
href="{{ route('project.database.backups.all', $parameters) }}">
<button>Backups</button>
</a>
@endif
2023-08-07 18:46:40 +02:00
<div class="flex-1"></div>
@if ($database->status !== 'exited')
2023-08-07 18:46:40 +02:00
<button wire:click='stop' class="flex items-center gap-2 cursor-pointer hover:text-white text-neutral-400">
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 text-error" viewBox="0 0 24 24" stroke-width="2"
2023-08-11 20:19:42 +02:00
stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
2023-08-07 18:46:40 +02:00
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M6 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"></path>
<path d="M14 5m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v12a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"></path>
</svg>
Stop
</button>
@else
<button wire:click='start' onclick="startDatabase.showModal()"
2023-08-11 20:19:42 +02:00
class="flex items-center gap-2 cursor-pointer hover:text-white text-neutral-400">
2023-08-07 18:46:40 +02:00
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5 text-warning" viewBox="0 0 24 24" stroke-width="1.5"
2023-08-11 20:19:42 +02:00
stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M7 4v16l13 -8z" />
</svg>
Start
2023-08-07 18:46:40 +02:00
</button>
@endif
</div>