Guest User

Untitled

a guest
Apr 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <!--
  2. boyle bir default blade dosyan olsun
  3. bunu tum sayafalara extends etmelisin sabit
  4. bir header ve footer icin.
  5. Burada en onemli olan content dinamik olması. Her sayfanın
  6. icerigi content uzerinde olcak. Simdi alttaki ornege bak bunun icin
  7. -->
  8. <html>
  9. <head>
  10. @section("head")
  11. <!-- Head -->
  12. @endsection
  13. @section("header")
  14. <title>@yield("title")</title>
  15. <meta></meta>
  16. @endsection
  17. </head>
  18. <body>
  19. @yield("content")
  20. @section("footer")
  21. <!-- Footer Alanı -->
  22. @endsection
  23. </body>
  24.  
  25. </html>
Add Comment
Please, Sign In to add comment