layout.blade.php 548 B

12345678910111213141516171819202122232425262728293031
  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. </style>
  20. </head>
  21. <body>
  22. @include('partials.header')
  23. @section('content')
  24. @show
  25. @include('partials.footer')
  26. </body>
  27. </html>