19 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!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>
 | 
						|
    </header>
 | 
						|
    <main>
 | 
						|
        @yield('main')
 | 
						|
    </main>
 | 
						|
</body>
 | 
						|
</html>
 |