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