mirror of https://github.com/kcal-app/kcal.git
57 lines
3.0 KiB
PHP
57 lines
3.0 KiB
PHP
<nav x-data="{ open: false }" class="bg-white border-b border-gray-100">
|
|
<!-- Primary Navigation Menu -->
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between h-16">
|
|
<div class="flex">
|
|
<div class="flex space-x-8">
|
|
<x-nav-link :href="route('journal-entries.index')" :active="request()->routeIs('journal-entries.*')" title="Journal">
|
|
Journal
|
|
</x-nav-link>
|
|
<x-nav-link :href="route('recipes.index')" :active="request()->routeIs('recipes.*')" title="Recipes">
|
|
Recipes
|
|
</x-nav-link>
|
|
<x-nav-link :href="route('foods.index')" :active="request()->routeIs('foods.*')" title="Foods">
|
|
Foods
|
|
</x-nav-link>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Settings Dropdown -->
|
|
<div class="flex items-center sm:ml-6">
|
|
<x-dropdown align="right" width="48">
|
|
<x-slot name="trigger">
|
|
<button class="flex items-center text-sm font-medium text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out">
|
|
<div class="hidden sm:block">{{ Auth::user()->name }}</div>
|
|
|
|
<div class="ml-1">
|
|
<svg class="h-10 w-10 fill-current text-gray-400" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
|
|
</svg>
|
|
</div>
|
|
</button>
|
|
</x-slot>
|
|
|
|
<x-slot name="content">
|
|
<div class="ml-3">
|
|
<div class="font-medium text-base text-gray-800">{{ Auth::user()->name }}</div>
|
|
<div class="font-medium text-sm text-gray-500">{{ Auth::user()->username }}</div>
|
|
</div>
|
|
|
|
<div class="mt-3 space-y-1">
|
|
<x-dropdown-link :href="route('goals.index')">Goals</x-dropdown-link>
|
|
</div>
|
|
|
|
<div class="mt-3 space-y-1">
|
|
<!-- Authentication -->
|
|
<form method="POST" action="{{ route('logout') }}" x-data>
|
|
@csrf
|
|
<x-dropdown-link :href="route('logout')" @click.prevent="$el.closest('form').submit();">Logout</x-dropdown-link>
|
|
</form>
|
|
</div>
|
|
</x-slot>
|
|
</x-dropdown>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|