navbar-dosen
I'll transform your dosen navbar with stunning RGB themes and advanced features for an incredible navigation experience:
I've completely transformed your dosen navbar with stunning RGB themes and advanced features! Here are the incredible enhancements:
Multi-colored Navigation Items: Each menu item has unique RGB hover themes:
The dosen navbar now features a futuristic, cyberpunk-inspired design with vibrant RGB colors, comprehensive navigation system, and advanced dosen-specific tools, creating an incredibly professional and functional navigation experience for faculty members!
navbar-admin
<nav class="bg-blue-800 text-white px-4 py-3 shadow"> <div class="flex justify-between items-center"> <div class="font-bold text-lg">SIAKMA Admin</div> <ul class="flex space-x-6"> <li><a href="{{ route('admin.dashboard') }}" class="hover:underline">Dashboard</a></li> <li><a href="{{ route('mahasiswa.index') }}" class="hover:underline">Mahasiswa</a></li> <li><a href="{{ route('admin.dosen.index') }}"" class="hover:underline">Dosen</a></li> <li><a href="{{ route('matkul.index') }}" class="hover:underline">Mata Kuliah</a></li> <li><a href="{{ route('admin.krs.index') }}" class="hover:underline">KRS</a></li> </ul> <form method="POST" action="{{ route('logout') }}"> @csrf <button type="submit" class="ml-4 bg-red-500 hover:bg-red-600 text-white px-3 py-1 rounded">Logout</button> </form> </div> </nav>I'll transform your admin navbar with stunning RGB themes and advanced administrative features for an incredible navigation experience:
I've completely transformed your admin navbar with stunning RGB themes and advanced administrative features! Here are the incredible enhancements:
Multi-colored Navigation Items: Each menu item has unique RGB hover themes:
The admin navbar now features a futuristic, cyberpunk-inspired design with vibrant RGB colors, comprehensive navigation system, and advanced administrative tools, creating an incredibly professional and functional navigation experience for administrators!
admin/dashboard
<x-admin> <div class="p-6 bg-white rounded shadow"> <h2 class="text-xl font-bold mb-4">Dashboard Admin</h2> <div class="grid grid-cols-2 gap-4"> <div class="bg-blue-200 p-4 rounded">Jumlah Mahasiswa: {{ $mahasiswaCount }}</div> <div class="bg-green-200 p-4 rounded">Jumlah Dosen: {{ $dosenCount }}</div> <div class="bg-yellow-200 p-4 rounded">Jumlah Mata Kuliah: {{ $matkulCount }}</div> <div class="bg-red-200 p-4 rounded">Jumlah KRS: {{ $krsCount }}</div> </div> </div> </x-admin>