12345678910111213141516171819202122232425262728293031323334353637 |
- <html>
- <head>
- <title></title>
- <style type="text/css">
- table.gridtable {
- margin: 50px auto;
- width:90%;
- font-family: verdana,arial,sans-serif;
- font-size:11px;
- color:#333333;
- border-width: 1px;
- border-color: #666666;
- border-collapse: collapse;
- }
- table.gridtable th {
- border-width: 1px;
- padding: 8px;
- border-style: solid;
- border-color: #666666;
- background-color: #dedede;
- }
- table.gridtable td {
- align-content: center;
- border-width: 1px;
- padding: 8px;
- border-style: solid;
- border-color: #666666;
- background-color: #ffffff;
- }
- </style>
- </head>
- <body>
- @foreach($content as $key=>$value)
- {{$key . ' : ' . $value}} <br/>
- @endforeach
- </body>
- </html>
|