2026-01-29 17:12:02 +03:00

97 lines
3.4 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<!-- Chart.js -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
body {
background-color: #f8f9fa;
}
.sidebar {
min-height: 100vh;
background: #343a40;
color: white;
}
.sidebar .nav-link {
color: rgba(255,255,255,.75);
}
.sidebar .nav-link:hover {
color: white;
}
.kpi-card {
transition: transform 0.2s;
}
.kpi-card:hover {
transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="d-flex">
<!-- Sidebar -->
@include('partials.sidebar')
<!-- Main Content -->
<div class="flex-grow-1">
<!-- Top Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom">
<div class="container-fluid">
<span class="navbar-brand mb-0 h1">Hospitality Group CRM</span>
<div class="d-flex">
<div class="dropdown">
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown">
<i class="fas fa-user"></i> {{ session('user')['username'] ?? 'User' }}
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#"><i class="fas fa-cog"></i> Settings</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="/" onclick="logout()"><i class="fas fa-sign-out-alt"></i> Logout</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Page Content -->
<main>
@yield('content')
</main>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
@yield('scripts')
<script>
function logout() {
localStorage.removeItem('user');
window.location.href = '/';
}
function showToast(message, type = 'info') {
// Simple toast implementation
const toast = document.createElement('div');
toast.className = `alert alert-${type} alert-dismissible fade show position-fixed`;
toast.style.cssText = 'top: 20px; right: 20px; z-index: 9999; min-width: 300px;';
toast.innerHTML = `
${message}
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
`;
document.body.appendChild(toast);
setTimeout(() => toast.remove(), 3000);
}
</script>
</body>
</html>