Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <body>
  2. @yield('body')
  3. <body>
  4.  
  5. <html>
  6. @include('template-body')
  7. @yield('other')
  8. </html>
  9.  
  10. @extends('template-html')
  11. @section('body')
  12. Hello World! (does not work)
  13. @endsection
  14. @section('other')
  15. Does work
  16. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement