Last active
August 29, 2015 14:08
-
-
Save zmax/31845fb09a4866cc4528 to your computer and use it in GitHub Desktop.
Nested section (blade template)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @section('css') | |
| <link rel="stylesheet" href="css/field1.css" /> | |
| @parent | |
| @stop | |
| @section('js') | |
| <script src="js/field1.js"></script> | |
| @parent | |
| @stop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @section('css') | |
| <link rel="stylesheet" href="css/field2.css" /> | |
| @parent | |
| @stop | |
| @section('js') | |
| <script src="js/field2.js"></script> | |
| @parent | |
| @stop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Nested section testing</title> | |
| <link rel="stylesheet" href="layout.css"/> | |
| @yield('css') | |
| </head> | |
| <body> | |
| @yield('content') | |
| <script src="js/layout.js"></script> | |
| @yield('js') | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('test.layout') | |
| @section('css') | |
| <link rel="stylesheet" href="css/page.css" /> | |
| @parent | |
| @stop | |
| @section('js') | |
| <script src="js/page.js"></script> | |
| @parent | |
| @stop | |
| @section('content') | |
| @include('test.field1') | |
| @include('test.field2') | |
| @show | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Nested section testing</title> | |
| <link rel="stylesheet" href="layout.css"/> | |
| <link rel="stylesheet" href="css/page.css" /> | |
| <link rel="stylesheet" href="css/field1.css" /> | |
| <link rel="stylesheet" href="css/field2.css" /> | |
| </head> | |
| <body> | |
| <script src="js/layout.js"></script> | |
| <script src="js/page.js"></script> | |
| <script src="js/field1.js"></script> | |
| <script src="js/field2.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment