26 lines
500 B
PHP
26 lines
500 B
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Dashboard</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-100">
|
|
|
|
<div class="flex min-h-screen">
|
|
|
|
{{-- SIDEBAR --}}
|
|
@include('partials.sidebar')
|
|
|
|
{{-- MAIN --}}
|
|
<main class="flex-1 overflow-x-hidden overflow-y-auto bg-gray-100">
|
|
<div class="container mx-auto px-6 py-8">
|
|
@yield('content')
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|