| 123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>@yield('title')</title>
- <meta name="description" content="@yield('description')">
- @stack('css')
- </head>
- <body>
- @include('partials.header')
- <p>This is base layout</p>
- @yield('content')
- @include('partials.footer')
- </body>
- </html>
|