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

34 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="/">
<x-inputs.button>Home</x-inputs.button>
2023-05-12 13:39:07 +00:00
</a>
2023-05-14 12:43:49 +00:00
<a href="/command-center">
<x-inputs.button>Command Center</x-inputs.button>
</a>
<a href="/profile">
<x-inputs.button>Profile</x-inputs.button>
</a>
@if (auth()->user()->isRoot())
<a href="/settings">
<x-inputs.button>Settings</x-inputs.button>
</a>
@endif
</div>
<div class="flex-1"></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
<x-inputs.button type="submit">Logout</x-inputs.button>
</form>
</div>
2023-05-12 10:22:41 +00:00
</div>
2023-05-14 12:43:49 +00:00
</nav>
@endauth