46 lines
2.3 KiB
PHP
46 lines
2.3 KiB
PHP
<aside id="sidebar" class="hidden w-64 p-6 bg-white border-r border-gray-200 shadow-md md:block">
|
|
<div class="flex items-center mb-8">
|
|
<svg class="w-8 h-8 text-blue-600" fill="none" stroke="currentColor" stroke-width="2"
|
|
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path stroke-linecap="round" stroke-linejoin="round"
|
|
d="M12 18a6 6 0 100-12 6 6 0 000 12zm0 0v2m0-2a6 6 0 01-6-6H4a8 8 0 0016 0h-2a6 6 0 01-6 6z" />
|
|
</svg>
|
|
<span class="ml-2 text-xl font-bold text-gray-800">IoT Panel</span>
|
|
</div>
|
|
|
|
<h2 class="mb-4 text-sm font-semibold tracking-wide text-gray-500 uppercase">Menu</h2>
|
|
|
|
<nav class="space-y-2">
|
|
<a href="{{ route('dashboard') }}"
|
|
class="flex items-center px-3 py-2 rounded-lg transition-colors
|
|
hover:bg-blue-100 hover:text-blue-700
|
|
{{ request()->routeIs('dashboard') ? 'bg-blue-100 text-blue-700' : 'text-gray-700' }}">
|
|
<svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" stroke-width="2"
|
|
viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M3 12l2-2m0 0l7-7 7 7M13 5v6h6m-6 0H5v14h14v-8" />
|
|
</svg>
|
|
Dashboard
|
|
</a>
|
|
|
|
<a href="#" class="flex items-center px-3 py-2 text-gray-700 transition-colors rounded-lg hover:bg-blue-100 hover:text-blue-700">
|
|
<svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" stroke-width="2"
|
|
viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5.121 17.804A13.937 13.937 0 0112 15c2.5 0 4.847.655 6.879 1.804M15 12a3 3 0 10-6 0 3 3 0 006 0z" />
|
|
</svg>
|
|
Users
|
|
</a>
|
|
|
|
<a href="{{ route('fotokita.index') }}"
|
|
class="flex items-center px-3 py-2 rounded-lg transition-colors
|
|
hover:bg-blue-100 hover:text-blue-700
|
|
{{ request()->routeIs('foto.index') ? 'bg-blue-100 text-blue-700' : 'text-gray-700' }}">
|
|
<svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" stroke-width="2"
|
|
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path stroke-linecap="round" stroke-linejoin="round"
|
|
d="M3 7h2l2-3h10l2 3h2a1 1 0 011 1v11a1 1 0 01-1 1H3a1 1 0 01-1-1V8a1 1 0 011-1zm9 10a4 4 0 100-8 4 4 0 000 8z" />
|
|
</svg>
|
|
Photos
|
|
</a>
|
|
</nav>
|
|
</aside>
|