Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <html>
  2. <head></head>
  3. <body>
  4.  
  5. <h1>A</h1>
  6. @yield('content')
  7. <h2>C</h2>
  8.  
  9. </body>
  10. </html>
  11.  
  12. @extends('layout')
  13.  
  14. @section('content')
  15. <p>B</p>
  16. @endsection
  17.  
  18. <html>
  19. <head></head>
  20. <body>
  21.  
  22. <h1>A</h1>
  23. <p>B</p>
  24. <h2>C</h2>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement