12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
- <title>@section('title') Default title @show</title>
- <style>
- table{
- border: 2px solid black;
- border-collapse: collapse;
- }
- td, th{
- padding: 5px;
- border: 1px solid black;
- }
- th{
- background-color: #fcd4db;
- }
- </style>
- </head>
- <body>
-
- @include('partials.header')
- @section('content')
-
- @show
- @include('partials.footer')
- </body>
- </html>
|