ConsultancyProject_2_ETL/dashboard/resources/views/base.blade.php

26 lines
557 B
PHP
Raw Normal View History

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>
<body>
<header>
<span>Dashboard</span>
2024-12-18 19:52:06 +01:00
<nav>
<ul>
<li>
<a href="/">Start</a>
</li>
</ul>
</nav>
2024-12-18 15:14:13 +01:00
</header>
<main>
@yield('main')
</main>
</body>
</html>