2023-04-19 12:42:15 +02:00
|
|
|
<nav class="flex gap-2 ">
|
2023-04-12 14:08:48 +02:00
|
|
|
<div>v{{ config('coolify.version') }}</div>
|
2023-03-24 14:54:17 +01:00
|
|
|
@auth
|
2023-03-27 10:44:31 +02:00
|
|
|
<a href="/">Home</a>
|
2023-05-04 10:00:08 +02:00
|
|
|
<a href="/command-center">Command Center</a>
|
2023-03-24 14:54:17 +01:00
|
|
|
<a href="/profile">Profile</a>
|
2023-04-25 09:38:05 +02:00
|
|
|
@if (auth()->user()->isRoot())
|
|
|
|
<a href="/settings">Settings</a>
|
|
|
|
@endif
|
2023-03-24 14:54:17 +01:00
|
|
|
<form action="/logout" method="POST">
|
|
|
|
@csrf
|
2023-05-03 14:09:10 +02:00
|
|
|
<x-inputs.button type="submit">Logout</x-inputs.button>
|
2023-03-24 14:54:17 +01:00
|
|
|
</form>
|
2023-04-28 15:08:48 +02:00
|
|
|
<livewire:check-update />
|
|
|
|
<livewire:force-upgrade />
|
|
|
|
@endauth
|
2023-03-20 12:04:22 +00:00
|
|
|
</nav>
|