retrofairie/resources/views/layouts/app.blade.php
2025-02-20 17:43:36 -08:00

20 lines
350 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
@include('layouts.head')
<body>
@include('layouts.navigation')
<!-- Page Heading -->
@isset($header)
<header>
{{ $header }}
</header>
@endisset
<!-- Page Content -->
<main>
{{ $slot }}
</main>
</body>
</html>