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

18 lines
541 B
PHP
Raw Normal View History

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>
@auth
<a href="/">Home</a>
2023-05-04 08:00:08 +00:00
<a href="/command-center">Command Center</a>
<a href="/profile">Profile</a>
2023-04-25 07:38:05 +00:00
@if (auth()->user()->isRoot())
<a href="/settings">Settings</a>
@endif
<form action="/logout" method="POST">
@csrf
2023-05-03 12:09:10 +00:00
<x-inputs.button type="submit">Logout</x-inputs.button>
</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>