38 lines
965 B
PHP
38 lines
965 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>@yield('title', 'Dashboard — Polije')</title>
|
|
{{-- TailwindCSS CDN --}}
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
{{-- Stack untuk CSS / head --}}
|
|
@stack('dashboard')
|
|
@stack('diagnosishasil')
|
|
@stack('infojurusan')
|
|
@stack('perhitungan')
|
|
@stack('profile')
|
|
@stack('new')
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
{{-- Konten halaman --}}
|
|
@yield('content')
|
|
|
|
{{-- Stack untuk JS sebelum </body> --}}
|
|
@stack('dashboard-scripts')
|
|
@stack('diagnosishasil-scripts')
|
|
@stack('infojurusan-scripts')
|
|
@stack('perhitungan-scripts')
|
|
@stack('profile-scripts')
|
|
@stack('scripts')
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
|
{{-- Bootstrap JS Bundle --}}
|
|
</body>
|
|
|
|
</html>
|