2026-04-26 11:58:51 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
2026-04-29 21:07:43 +02:00
|
|
|
<title>Trove @yield('title')</title>
|
2026-04-26 11:58:51 +02:00
|
|
|
|
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
|
|
|
|
|
|
|
|
@livewireStyles
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-04-29 21:07:43 +02:00
|
|
|
@yield('content')
|
2026-04-26 11:58:51 +02:00
|
|
|
|
|
|
|
|
@livewireScripts
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|