retrofairie/resources/views/layouts/app.blade.php
2025-02-21 22:04:57 -08:00

12 lines
280 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
@include('layouts.head')
<body>
@include('layouts.navigation')
<x-window :title="$header" minimize restore close class="max-w-[600px]">
{{ $slot }}
</x-window>
</body>
</html>