layout.blade.php 657 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. li{
  20. display:inline;
  21. padding-right:20px;
  22. }
  23. a{
  24. text-decoration: none;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. @include('partials.header')
  30. @section('content')
  31. @show
  32. <hr>
  33. @include('partials.footer')
  34. </body>
  35. </html>