10 lines
207 B
PHP
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>
|