layout.blade.php 595 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  6. <title>@section('title') Default title @show</title>
  7. <style>
  8. table{
  9. border: 2px solid black;
  10. border-collapse: collapse;
  11. }
  12. td, th{
  13. padding: 5px;
  14. border: 1px solid black;
  15. }
  16. th{
  17. background-color: #fcd4db;
  18. }
  19. a{
  20. text-decoration: none;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. @include('partials.header')
  26. @section('content')
  27. @show
  28. <hr>
  29. @include('partials.footer')
  30. </body>
  31. </html>