31 lines
882 B
PHP
31 lines
882 B
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||
|
|
<title>@yield('title', 'Dashboard') - {{ config('app.name') }}</title>
|
||
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||
|
|
@stack('styles')
|
||
|
|
</head>
|
||
|
|
<body class="bg-gray-100">
|
||
|
|
<div class="flex h-screen overflow-hidden">
|
||
|
|
<!-- Sidebar -->
|
||
|
|
@include('partials.sidebar')
|
||
|
|
|
||
|
|
<!-- Main Content Area -->
|
||
|
|
<div class="flex-1 flex flex-col overflow-hidden">
|
||
|
|
<!-- Header -->
|
||
|
|
@include('partials.header')
|
||
|
|
|
||
|
|
<!-- Page Content -->
|
||
|
|
<main class="flex-1 overflow-y-auto bg-gray-100 p-6">
|
||
|
|
@yield('content')
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
@stack('scripts')
|
||
|
|
</body>
|
||
|
|
</html>
|