retrofairie/resources/views/layouts/app.blade.php
2025-02-22 16:39:26 -08:00

10 lines
207 B
PHP

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