https://www.cloudways.com/blog/create-laravel-blade-layout/
- <!doctype html>
- <html>
- <head>
- @include('includes.head')
- </head>
- <body>
- <div class="container">
- <header class="row">
- @include('includes.header')
- </header>
- <div id="main" class="row">
- @yield('content')
- </div>
- <footer class="row">
- @include('includes.footer')
- </footer>
- </div>
- @stack('scripts')
- </body>
- </html>
No comments:
Post a Comment