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

36 lines
1.1 KiB
PHP
Raw Normal View History

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