345 lines
11 KiB
PHP
345 lines
11 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title', 'Admin Dashboard') - ML System</title>
|
|
|
|
<!-- Tailwind CSS -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
<!-- Google Fonts - Inter -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Font Awesome for Icons -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<!-- Chart.js (only load on pages that need it) -->
|
|
@if(request()->routeIs('admin.dashboard') || request()->routeIs('admin.system-statistics'))
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
@endif
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
/* Dark Mode Styles */
|
|
.dark {
|
|
background-color: #1a1a1a;
|
|
color: #e5e5e5;
|
|
}
|
|
|
|
.dark .bg-white {
|
|
background-color: #2d2d2d !important;
|
|
}
|
|
|
|
.dark .bg-gray-50 {
|
|
background-color: #1f1f1f !important;
|
|
}
|
|
|
|
.dark .bg-gray-100 {
|
|
background-color: #2d2d2d !important;
|
|
}
|
|
|
|
.dark .text-gray-900 {
|
|
color: #e5e5e5 !important;
|
|
}
|
|
|
|
.dark .text-gray-800 {
|
|
color: #d4d4d4 !important;
|
|
}
|
|
|
|
.dark .text-gray-700 {
|
|
color: #b3b3b3 !important;
|
|
}
|
|
|
|
.dark .text-gray-600 {
|
|
color: #999999 !important;
|
|
}
|
|
|
|
.dark .text-gray-500 {
|
|
color: #808080 !important;
|
|
}
|
|
|
|
.dark .border-gray-200 {
|
|
border-color: #404040 !important;
|
|
}
|
|
|
|
.dark .border-gray-300 {
|
|
border-color: #404040 !important;
|
|
}
|
|
|
|
.dark .hover\:bg-gray-50:hover {
|
|
background-color: #2d2d2d !important;
|
|
}
|
|
|
|
.dark .hover\:bg-gray-100:hover {
|
|
background-color: #3d3d3d !important;
|
|
}
|
|
|
|
.dark .hover\:bg-blue-50:hover {
|
|
background-color: #1e3a5f !important;
|
|
}
|
|
|
|
.dark .hover\:bg-orange-50:hover {
|
|
background-color: #5c3d1e !important;
|
|
}
|
|
|
|
.dark .hover\:bg-red-50:hover {
|
|
background-color: #5c1e1e !important;
|
|
}
|
|
|
|
.dark .divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
|
|
border-color: #404040 !important;
|
|
}
|
|
|
|
.dark .shadow-sm {
|
|
box-shadow: 0 1px 2px 0 rgba(255, 255, 255, 0.05) !important;
|
|
}
|
|
|
|
.dark .bg-gradient-to-r {
|
|
background-image: none !important;
|
|
}
|
|
|
|
.dark .btn-primary {
|
|
background-color: #dc2626 !important;
|
|
}
|
|
|
|
.dark .btn-primary:hover {
|
|
background-color: #b91c1c !important;
|
|
}
|
|
|
|
/* Modal Dark Mode */
|
|
.dark .fixed.inset-0 {
|
|
background-color: rgba(0, 0, 0, 0.8) !important;
|
|
}
|
|
|
|
.dark .fixed.inset-0 > .bg-white {
|
|
background-color: #2d2d2d !important;
|
|
color: #e5e5e5 !important;
|
|
}
|
|
|
|
.dark .text-gray-700 {
|
|
color: #b3b3b3 !important;
|
|
}
|
|
|
|
/* Form elements dark mode */
|
|
.dark input, .dark select, .dark textarea {
|
|
background-color: #3d3d3d !important;
|
|
border-color: #404040 !important;
|
|
color: #e5e5e5 !important;
|
|
}
|
|
|
|
.dark input:focus, .dark select:focus, .dark textarea:focus {
|
|
border-color: #dc2626 !important;
|
|
}
|
|
|
|
/* Sidebar dark mode */
|
|
.dark .bg-gradient-to-b {
|
|
background-image: none !important;
|
|
background-color: #1f1f1f !important;
|
|
}
|
|
|
|
.dark .sidebar-link {
|
|
color: #b3b3b3 !important;
|
|
}
|
|
|
|
.dark .sidebar-link:hover {
|
|
color: #e5e5e5 !important;
|
|
background-color: #2d2d2d !important;
|
|
}
|
|
|
|
.dark .sidebar-link.active {
|
|
color: #ffffff !important;
|
|
background-color: #dc2626 !important;
|
|
}
|
|
|
|
.sidebar-link.active {
|
|
background-color: #dc2626 !important;
|
|
color: white !important;
|
|
}
|
|
|
|
.sidebar-link:hover {
|
|
background-color: #f3f4f6 !important;
|
|
}
|
|
|
|
/* Admin card dark mode */
|
|
.dark .hover\:bg-gray-50:hover {
|
|
background-color: #2d2d2d !important;
|
|
}
|
|
|
|
.dark .border-t.border-gray-100 {
|
|
border-color: #404040 !important;
|
|
}
|
|
|
|
.stat-card {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.stat-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.chart-container {
|
|
position: relative;
|
|
height: 300px;
|
|
}
|
|
|
|
.chart-card {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.chart-card:hover {
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.table-row:hover {
|
|
background-color: #fafafa;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.filter-btn {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.filter-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
|
|
}
|
|
|
|
.filter-btn.active {
|
|
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
|
|
color: white;
|
|
}
|
|
|
|
.pagination-btn {
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.pagination-btn:hover:not(.active) {
|
|
background-color: #fee2e2;
|
|
color: #ef4444;
|
|
}
|
|
|
|
.pagination-btn.active {
|
|
background-color: #ef4444;
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
|
|
}
|
|
|
|
.btn-secondary {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<div class="flex h-screen overflow-hidden">
|
|
<!-- Sidebar -->
|
|
@include('Admin.partials.sidebar')
|
|
|
|
<!-- Main Content -->
|
|
<div class="flex-1 overflow-auto">
|
|
<!-- Top Navigation -->
|
|
<header class="bg-white shadow-sm border-b border-gray-200 sticky top-0 z-10">
|
|
<div class="flex items-center justify-between px-6 py-4">
|
|
<div class="flex-1">
|
|
<!-- Page Title (Mobile) -->
|
|
<h1 class="text-lg font-semibold text-gray-900 md:hidden">@yield('page-title')</h1>
|
|
</div>
|
|
|
|
<div class="flex items-center space-x-4">
|
|
<!-- Dark Mode Toggle -->
|
|
<button id="darkModeToggle" class="relative p-2 text-gray-600 hover:text-gray-900 transition-colors" title="Toggle Dark Mode">
|
|
<i class="fas fa-moon text-xl" id="darkModeIcon"></i>
|
|
</button>
|
|
|
|
<button class="relative p-2 text-gray-600 hover:text-gray-900 transition-colors">
|
|
<i class="fas fa-bell text-xl"></i>
|
|
<span class="absolute top-1 right-1 w-2 h-2 bg-red-500 rounded-full"></span>
|
|
</button>
|
|
|
|
<div class="flex items-center space-x-3">
|
|
<a href="{{ route('admin.logout') }}" class="sidebar-item flex items-center space-x-3 px-4 py-3 rounded-lg text-red-600 hover:bg-red-50 transition-all">
|
|
<i class="fas fa-sign-out-alt w-5"></i>
|
|
<span>Logout</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Page Content -->
|
|
<main class="p-6">
|
|
@yield('content')
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Common JavaScript -->
|
|
<script>
|
|
// Dark Mode Toggle
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const darkModeToggle = document.getElementById('darkModeToggle');
|
|
const darkModeIcon = document.getElementById('darkModeIcon');
|
|
const html = document.documentElement;
|
|
|
|
// Check for saved theme preference or default to light mode
|
|
const currentTheme = localStorage.getItem('theme') || 'light';
|
|
if (currentTheme === 'dark') {
|
|
html.classList.add('dark');
|
|
darkModeIcon.classList.remove('fa-moon');
|
|
darkModeIcon.classList.add('fa-sun');
|
|
}
|
|
|
|
// Toggle dark mode
|
|
darkModeToggle.addEventListener('click', function() {
|
|
const isDark = html.classList.contains('dark');
|
|
|
|
if (isDark) {
|
|
html.classList.remove('dark');
|
|
darkModeIcon.classList.remove('fa-sun');
|
|
darkModeIcon.classList.add('fa-moon');
|
|
localStorage.setItem('theme', 'light');
|
|
} else {
|
|
html.classList.add('dark');
|
|
darkModeIcon.classList.remove('fa-moon');
|
|
darkModeIcon.classList.add('fa-sun');
|
|
localStorage.setItem('theme', 'dark');
|
|
}
|
|
|
|
// Update chart colors if charts exist
|
|
if (window.updateChartTheme) {
|
|
updateChartTheme(!isDark);
|
|
}
|
|
});
|
|
|
|
// Initialize tooltips and other common UI elements
|
|
console.log('Admin Dashboard loaded');
|
|
});
|
|
</script>
|
|
|
|
@yield('scripts')
|
|
</body>
|
|
</html>
|