企微短剧业务系统

log.blade.php 930B

12345678910111213141516171819202122232425262728293031323334353637
  1. <html>
  2. <head>
  3. <title></title>
  4. <style type="text/css">
  5. table.gridtable {
  6. margin: 50px auto;
  7. width:90%;
  8. font-family: verdana,arial,sans-serif;
  9. font-size:11px;
  10. color:#333333;
  11. border-width: 1px;
  12. border-color: #666666;
  13. border-collapse: collapse;
  14. }
  15. table.gridtable th {
  16. border-width: 1px;
  17. padding: 8px;
  18. border-style: solid;
  19. border-color: #666666;
  20. background-color: #dedede;
  21. }
  22. table.gridtable td {
  23. align-content: center;
  24. border-width: 1px;
  25. padding: 8px;
  26. border-style: solid;
  27. border-color: #666666;
  28. background-color: #ffffff;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. @foreach($content as $key=>$value)
  34. {{$key . ' : ' . $value}} <br/>
  35. @endforeach
  36. </body>
  37. </html>