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