23 lines
488 B
PHP
23 lines
488 B
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<link rel="stylesheet" href="css/app.css" />
|
|
<link rel="stylesheet" href="css/elements.css" />
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
|
|
<!-- Base href für relative Assets -->
|
|
<base href="/">
|
|
|
|
<!-- Vite Assets -->
|
|
@vite('resources/js/app.js')
|
|
|
|
@inertiaHead
|
|
</head>
|
|
<body>
|
|
@inertia
|
|
</body>
|
|
</html>
|