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-04-14 08:54:05 +02:00
|
|
|
@env('local')
|
2023-03-24 14:54:17 +01:00
|
|
|
<a href="/demo">Demo</a>
|
2023-04-14 08:54:05 +02:00
|
|
|
@endenv
|
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
|
|
|
|
<button type="submit">Logout</button>
|
|
|
|
</form>
|
2023-04-19 12:42:15 +02:00
|
|
|
{{-- <livewire:check-update> --}}
|
2023-03-24 14:54:17 +01:00
|
|
|
@endauth
|
2023-03-20 12:04:22 +00:00
|
|
|
</nav>
|