38 lines
2.1 KiB
PHP
38 lines
2.1 KiB
PHP
<!-- Sidebar -->
|
|
<div class="w-40 h-full bg-white shadow-md">
|
|
<!-- Logo -->
|
|
<div class="p-4 flex justify-center">
|
|
<img src="{{ asset('assets/images/logo.png') }}" alt="INUFA Logo" class="w-28 h-28 object-contain">
|
|
</div>
|
|
|
|
<!-- Sidebar Menu -->
|
|
<nav class="mt-4">
|
|
<a href="{{ route('dashboard') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('dashboard') ? 'bg-blue-800 text-white' : '' }}">
|
|
Dashboard
|
|
</a>
|
|
@if(auth()->user()->tipe_pengguna === 'admin')
|
|
|
|
<a href="{{ route('pengguna') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('pengguna*') ? 'bg-blue-800 text-white' : '' }}">
|
|
Admin
|
|
</a>
|
|
<a href="{{ route('input-stock') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('input-stock*') ? 'bg-blue-800 text-white' : '' }}">
|
|
Input Stock
|
|
</a>
|
|
<a href="/admin/verifikasi" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->is('admin/verifikasi*') ? 'bg-blue-800 text-white' : '' }}">
|
|
Verifikasi
|
|
</a>
|
|
@endif
|
|
<a href="{{ route('paket') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('paket*') ? 'bg-blue-800 text-white' : '' }}">
|
|
Paket
|
|
</a>
|
|
<a href="{{ route('sewa.index') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('sewa.*') ? 'bg-blue-800 text-white' : '' }}">
|
|
Sewa
|
|
</a>
|
|
<a href="{{ route('riwayat') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('riwayat') ? 'bg-blue-800 text-white' : '' }}">
|
|
Riwayat
|
|
</a>
|
|
<a href="{{ route('contact.show') }}" class="block py-3 px-4 text-gray-800 font-semibold mb-1 hover:bg-gray-100 {{ request()->routeIs('contact.*') ? 'bg-blue-800 text-white' : '' }}">
|
|
Hubungi Kami
|
|
</a>
|
|
</nav>
|
|
</div>
|