2024-12-18 15:14:13 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Dashboard</title>
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js', 'node_modules/leaflet/dist/leaflet.css'])
|
|
|
|
</head>
|
2025-01-05 13:26:51 +01:00
|
|
|
<body class="@yield('body-class')">
|
2024-12-18 15:14:13 +01:00
|
|
|
<header>
|
2025-01-05 13:26:51 +01:00
|
|
|
@yield('header')
|
2024-12-18 15:14:13 +01:00
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
@yield('main')
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|