|
|
@@ -1,3 +1,4 @@
|
|
|
+@auth
|
|
|
<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">
|
|
|
@@ -15,6 +16,20 @@
|
|
|
<x-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
|
|
|
{{ __('Dashboard') }}
|
|
|
</x-nav-link>
|
|
|
+
|
|
|
+ <x-nav-link :href="route('applications.index')" :active="request()->routeIs('applications.index')">
|
|
|
+ {{ __('Заявки') }}
|
|
|
+ </x-nav-link>
|
|
|
+
|
|
|
+ <x-nav-link :href="route('applications.create')" :active="request()->routeIs('applications.create')">
|
|
|
+ {{ __('Создать заявку') }}
|
|
|
+ </x-nav-link>
|
|
|
+
|
|
|
+ @if (Auth::user()->role === 'admin')
|
|
|
+ <x-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
|
|
|
+ {{ __('Администрирование') }}
|
|
|
+ </x-nav-link>
|
|
|
+ @endif
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
@@ -23,7 +38,7 @@
|
|
|
<x-dropdown align="right" width="48">
|
|
|
<x-slot name="trigger">
|
|
|
<button class="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:text-gray-700 focus:outline-none transition ease-in-out duration-150">
|
|
|
- <div>{{ Auth::user()->name }}</div>
|
|
|
+ <div>{{ Auth::user()->login }}</div>
|
|
|
|
|
|
<div class="ms-1">
|
|
|
<svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
|
|
|
@@ -70,12 +85,27 @@
|
|
|
<x-responsive-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
|
|
|
{{ __('Dashboard') }}
|
|
|
</x-responsive-nav-link>
|
|
|
+
|
|
|
+ <x-responsive-nav-link :href="route('applications.index')" :active="request()->routeIs('applications.index')">
|
|
|
+ {{ __('Заявки') }}
|
|
|
+ </x-responsive-nav-link>
|
|
|
+
|
|
|
+ <x-responsive-nav-link :href="route('applications.create')" :active="request()->routeIs('applications.create')">
|
|
|
+ {{ __('Создать заявку') }}
|
|
|
+ </x-responsive-nav-link>
|
|
|
+
|
|
|
+ @if (Auth::user()->role === 'admin')
|
|
|
+ <x-responsive-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
|
|
|
+ {{ __('Администрирование') }}
|
|
|
+ </x-responsive-nav-link>
|
|
|
+ @endif
|
|
|
+
|
|
|
</div>
|
|
|
|
|
|
<!-- Responsive Settings Options -->
|
|
|
<div class="pt-4 pb-1 border-t border-gray-200">
|
|
|
<div class="px-4">
|
|
|
- <div class="font-medium text-base text-gray-800">{{ Auth::user()->name }}</div>
|
|
|
+ <div class="font-medium text-base text-gray-800">{{ Auth::user()->login }}</div>
|
|
|
<div class="font-medium text-sm text-gray-500">{{ Auth::user()->email }}</div>
|
|
|
</div>
|
|
|
|
|
|
@@ -98,3 +128,47 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</nav>
|
|
|
+@else
|
|
|
+<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">
|
|
|
+ <!-- Navigation Links -->
|
|
|
+ <div class="hidden space-x-8 sm:-my-px sm:ms-10 sm:flex">
|
|
|
+ <x-nav-link :href="route('login')" :active="request()->routeIs('login')">
|
|
|
+ {{ __('Войти') }}
|
|
|
+ </x-nav-link>
|
|
|
+
|
|
|
+ <x-nav-link :href="route('register')" :active="request()->routeIs('register')">
|
|
|
+ {{ __('Регистрация') }}
|
|
|
+ </x-nav-link>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- Hamburger -->
|
|
|
+ <div class="-me-2 flex items-center sm:hidden">
|
|
|
+ <button @click="open = ! open" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out">
|
|
|
+ <svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24">
|
|
|
+ <path :class="{'hidden': open, 'inline-flex': ! open }" class="inline-flex" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
|
|
+ <path :class="{'hidden': ! open, 'inline-flex': open }" class="hidden" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
|
|
+ </svg>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- Responsive Navigation Menu -->
|
|
|
+ <div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
|
|
+ <div class="pt-2 pb-3 space-y-1">
|
|
|
+ <x-responsive-nav-link :href="route('login')" :active="request()->routeIs('login')">
|
|
|
+ {{ __('Войти') }}
|
|
|
+ </x-responsive-nav-link>
|
|
|
+
|
|
|
+ <x-responsive-nav-link :href="route('register')" :active="request()->routeIs('register')">
|
|
|
+ {{ __('Регистрация') }}
|
|
|
+ </x-responsive-nav-link>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</nav>
|
|
|
+@endauth
|