76 lines
3.4 KiB
PHP
76 lines
3.4 KiB
PHP
|
|
<!-- Header -->
|
||
|
|
<header class="bg-white shadow-sm h-16 flex items-center justify-between px-6 border-b border-gray-200">
|
||
|
|
<!-- Page Title (좌측) -->
|
||
|
|
<div>
|
||
|
|
<h1 class="text-2xl font-semibold text-gray-900">
|
||
|
|
@yield('page-title', '대시보드')
|
||
|
|
</h1>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Right Side Actions -->
|
||
|
|
<div class="flex items-center gap-4">
|
||
|
|
<!-- Notifications (추후 추가) -->
|
||
|
|
<button class="p-2 text-gray-600 hover:text-gray-900 hover:bg-gray-100 rounded-lg">
|
||
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" />
|
||
|
|
</svg>
|
||
|
|
</button>
|
||
|
|
|
||
|
|
<!-- User Menu Dropdown -->
|
||
|
|
<div class="relative">
|
||
|
|
<button
|
||
|
|
type="button"
|
||
|
|
onclick="document.getElementById('headerUserMenu').classList.toggle('hidden')"
|
||
|
|
class="flex items-center gap-2 px-3 py-2 text-sm font-medium text-gray-700 hover:bg-gray-100 rounded-lg focus:outline-none"
|
||
|
|
>
|
||
|
|
<div class="w-8 h-8 rounded-full bg-primary text-white flex items-center justify-center text-sm font-bold">
|
||
|
|
{{ strtoupper(substr(auth()->user()->name ?? 'U', 0, 1)) }}
|
||
|
|
</div>
|
||
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
|
||
|
|
</svg>
|
||
|
|
</button>
|
||
|
|
|
||
|
|
<!-- Dropdown Menu -->
|
||
|
|
<div id="headerUserMenu" class="hidden absolute right-0 mt-2 w-56 bg-white rounded-lg shadow-lg border border-gray-200 py-1 z-50">
|
||
|
|
<!-- User Info -->
|
||
|
|
<div class="px-4 py-3 border-b border-gray-200">
|
||
|
|
<p class="text-sm font-medium text-gray-900">{{ auth()->user()->name ?? 'User' }}</p>
|
||
|
|
<p class="text-xs text-gray-500 truncate">{{ auth()->user()->email }}</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Menu Items -->
|
||
|
|
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">
|
||
|
|
프로필 설정
|
||
|
|
</a>
|
||
|
|
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">
|
||
|
|
계정 설정
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<div class="border-t border-gray-200 my-1"></div>
|
||
|
|
|
||
|
|
<!-- Logout -->
|
||
|
|
<form method="POST" action="{{ route('logout') }}">
|
||
|
|
@csrf
|
||
|
|
<button type="submit" class="block w-full text-left px-4 py-2 text-sm text-red-600 hover:bg-gray-100">
|
||
|
|
로그아웃
|
||
|
|
</button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
@push('scripts')
|
||
|
|
<script>
|
||
|
|
// Close dropdown when clicking outside
|
||
|
|
document.addEventListener('click', function(event) {
|
||
|
|
const userMenu = document.getElementById('headerUserMenu');
|
||
|
|
const button = event.target.closest('button[onclick*="headerUserMenu"]');
|
||
|
|
if (!button && !userMenu.contains(event.target)) {
|
||
|
|
userMenu.classList.add('hidden');
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
@endpush
|