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

36 lines
1.1 KiB
PHP
Raw Normal View History

2023-05-14 14:43:49 +02:00
@auth
2023-05-16 09:35:09 +02:00
<nav>
2023-05-14 14:43:49 +02:00
<div class="flex px-2 py-1">
2023-05-16 09:35:09 +02:00
<div class="flex gap-2 text-sm">
2023-05-14 14:43:49 +02:00
<a href="/">
2023-05-16 20:47:59 +02:00
Home
2023-05-12 15:39:07 +02:00
</a>
2023-05-14 14:43:49 +02:00
<a href="/command-center">
2023-05-16 20:47:59 +02:00
Command Center
2023-05-14 14:43:49 +02:00
</a>
<a href="/profile">
2023-05-16 20:47:59 +02:00
Profile
2023-05-14 14:43:49 +02:00
</a>
2023-05-16 14:38:11 +02:00
<a href="/profile/team">
2023-05-16 20:47:59 +02:00
Team
2023-05-16 14:38:11 +02:00
</a>
2023-05-14 14:43:49 +02:00
@if (auth()->user()->isRoot())
<a href="/settings">
2023-05-16 20:47:59 +02:00
Settings
2023-05-14 14:43:49 +02:00
</a>
@endif
</div>
<x-magic-bar />
<div class="flex-1"></div>
2023-05-16 09:35:09 +02:00
<div class="flex gap-2 text-sm">
2023-05-14 14:43:49 +02:00
{{-- <livewire:check-update /> --}}
<livewire:force-upgrade />
<form action="/logout" method="POST">
@csrf
2023-05-17 09:08:32 +02:00
<button class="m-1 border-none hover:underline text-neutral-400" type="submit">Logout</button>
2023-05-14 14:43:49 +02:00
</form>
</div>
2023-05-12 12:22:41 +02:00
</div>
2023-05-14 14:43:49 +02:00
</nav>
@endauth