24 lines
522 B
PHP
24 lines
522 B
PHP
<nav x-data="{ open: false }">
|
|
<!-- Primary Navigation Menu -->
|
|
<div>
|
|
<!-- Logo -->
|
|
<a href="{{ route('dashboard') }}">
|
|
<x-application-logo class="w-20" />
|
|
</a>
|
|
|
|
<!-- Navigation Links -->
|
|
<a href="{{ route('dashboard') }}">Dashboard</a>
|
|
|
|
<!-- Profile -->
|
|
<a href="{{ route('profile.edit') }}">
|
|
{{ Auth::user()->name }}
|
|
</a>
|
|
|
|
<!-- Log Out -->
|
|
<form method="POST" action="{{ route('logout') }}">
|
|
@csrf
|
|
|
|
<button>Log Out</button>
|
|
</form>
|
|
</div>
|
|
</nav>
|