18 lines
416 B
PHP
18 lines
416 B
PHP
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ $title ?? 'Fox HUD' }}</title>
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="hud-body">
|
|
{{ $slot ?? '' }}
|
|
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|