|
|
@@ -51,7 +51,7 @@
|
|
51
|
51
|
<x-dropdown-link :href="route('user.profilo')">
|
|
52
|
52
|
Profilo
|
|
53
|
53
|
</x-dropdown-link>
|
|
54
|
|
-
|
|
|
54
|
+
|
|
55
|
55
|
<!-- Authentication -->
|
|
56
|
56
|
<form method="POST" action="{{ route('logout') }}">
|
|
57
|
57
|
@csrf
|
|
|
@@ -84,29 +84,50 @@
|
|
84
|
84
|
|
|
85
|
85
|
<!-- Responsive Navigation Menu -->
|
|
86
|
86
|
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
|
87
|
|
- <div class="pt-2 pb-3 space-y-1">
|
|
88
|
|
- <x-responsive-nav-link :href="route('login')" :active="request()->routeIs('dashboard')">
|
|
89
|
|
- {{ __('Dashboard') }}
|
|
90
|
|
- </x-responsive-nav-link>
|
|
91
|
|
- </div>
|
|
|
87
|
+ <div class="pt-2 pb-3 space-y-1">
|
|
|
88
|
+ <x-responsive-nav-link :href="route('home')" :active="request()->routeIs('home')">
|
|
|
89
|
+ <i class="fas fa-home"></i> Home
|
|
|
90
|
+ </x-responsive-nav-link>
|
|
92
|
91
|
|
|
93
|
|
- <!-- Responsive Settings Options -->
|
|
94
|
|
- <div class="pt-4 pb-1 border-t border-gray-200">
|
|
95
|
|
- <div class="flex items-center px-4">
|
|
96
|
|
- <div class="flex-shrink-0">
|
|
97
|
|
- <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">
|
|
98
|
|
- <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" />
|
|
99
|
|
- </svg>
|
|
100
|
|
- </div>
|
|
|
92
|
+ <x-responsive-nav-link :href="route('issue.index')" :active="request()->routeIs('issue.index')">
|
|
|
93
|
+ <i class="fas fa-ticket-alt"></i> Issues
|
|
|
94
|
+ </x-responsive-nav-link>
|
|
101
|
95
|
|
|
102
|
|
- <div class="ml-3">
|
|
103
|
|
- <div class="font-medium text-base text-gray-800">A</div>
|
|
104
|
|
- <div class="font-medium text-sm text-gray-500">B</div>
|
|
105
|
|
- </div>
|
|
|
96
|
+ <x-responsive-nav-link :href="route('azienda.index')" :active="request()->routeIs('azienda.index')">
|
|
|
97
|
+ <i class="fas fa-industry"></i> Aziende
|
|
|
98
|
+ </x-responsive-nav-link>
|
|
|
99
|
+
|
|
|
100
|
+ <x-responsive-nav-link :href="route('config.index')" :active="request()->routeIs('config.index')">
|
|
|
101
|
+ <i class="fas fa-cog"></i> Configurazione
|
|
|
102
|
+ </x-responsive-nav-link>
|
|
106
|
103
|
</div>
|
|
107
|
104
|
|
|
108
|
|
- <div class="mt-3 space-y-1">
|
|
|
105
|
+ <!-- Responsive Settings Options -->
|
|
|
106
|
+ <div class="pt-4 pb-1 border-t border-gray-200">
|
|
|
107
|
+ <div class="flex items-center px-4">
|
|
|
108
|
+ <div class="flex-shrink-0">
|
|
|
109
|
+ <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">
|
|
|
110
|
+ <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" />
|
|
|
111
|
+ </svg>
|
|
|
112
|
+ </div>
|
|
|
113
|
+
|
|
|
114
|
+ <div class="ml-3">
|
|
|
115
|
+ <div class="font-medium text-base text-gray-800">{{ session('redmine_user')->firstname }} {{ session('redmine_user')->lastname }}</div>
|
|
|
116
|
+ </div>
|
|
|
117
|
+ </div>
|
|
|
118
|
+
|
|
|
119
|
+ <div class="mt-3 space-y-1">
|
|
|
120
|
+ <!-- Authentication -->
|
|
|
121
|
+ <form method="POST" action="{{ route('logout') }}">
|
|
|
122
|
+ @csrf
|
|
|
123
|
+
|
|
|
124
|
+ <x-responsive-nav-link :href="route('logout')"
|
|
|
125
|
+ onclick="event.preventDefault();
|
|
|
126
|
+ this.closest('form').submit();">
|
|
|
127
|
+ {{ __('Log out') }}
|
|
|
128
|
+ </x-responsive-nav-link>
|
|
|
129
|
+ </form>
|
|
|
130
|
+ </div>
|
|
109
|
131
|
</div>
|
|
110
|
|
- </div>
|
|
111
|
132
|
</div>
|
|
112
|
133
|
</nav>
|