productStats.blade.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>{{$title}}</title>
  5. <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
  6. </head>
  7. <body>
  8. <table class="table">
  9. <caption>{{$title}}</caption>
  10. <thead>
  11. <tr>
  12. <th>日期</th>
  13. <th>男女频</th>
  14. <th>引入作品数量</th>
  15. <th>更新作品数量</th>
  16. <th>更新章节数</th>
  17. <th>连载作品数量</th>
  18. <th>断更作品数量</th>
  19. <th>内部作品断更数量</th>
  20. <th>外部作品断更数量</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr>
  25. <td>{{$data['date']}}</td>
  26. <td>总</td>
  27. <td>{{$data['new_product_num']}}</td>
  28. <td>{{$data['updated_product_num']}}</td>
  29. <td>{{$data['updated_chapter_num']}}</td>
  30. <td>{{$data['serial_num']}}</td>
  31. <td>{{$data['not_updated_serial']}}</td>
  32. <td>{{$data['internal_suspend']}}</td>
  33. <td>{{$data['outer_suspend']}}</td>
  34. </tr><tr>
  35. <td>{{$data['date']}}</td>
  36. <td>男频</td>
  37. <td>{{$data['new_product_male_num']}}</td>
  38. <td>{{$data['updated_product_male_num']}}</td>
  39. <td>{{$data['updated_chapter_male_num']}}</td>
  40. <td>{{$data['serial_male_num']}}</td>
  41. <td>{{$data['not_updated_serial_male']}}</td>
  42. <td>{{$data['internal_suspend_male']}}</td>
  43. <td>{{$data['outer_suspend_male']}}</td>
  44. </tr><tr>
  45. <td>{{$data['date']}}</td>
  46. <td>女频</td>
  47. <td>{{$data['new_product_female_num']}}</td>
  48. <td>{{$data['updated_product_female_num']}}</td>
  49. <td>{{$data['updated_chapter_female_num']}}</td>
  50. <td>{{$data['serial_female_num']}}</td>
  51. <td>{{$data['not_updated_serial_female']}}</td>
  52. <td>{{$data['internal_suspend_female']}}</td>
  53. <td>{{$data['outer_suspend_female']}}</td>
  54. </tr>
  55. </tbody>
  56. </table>
  57. <br/>
  58. <br/>
  59. <table class="table">
  60. <caption>{{$title2}}</caption>
  61. <thead>
  62. <tr>
  63. <th>bid</th>
  64. <th>书名</th>
  65. <th>一级分类</th>
  66. <th>最近更新</th>
  67. <th>累计断更时长(小时)</th>
  68. <th>断更天数</th>
  69. <th>作品类型</th>
  70. </tr>
  71. </thead>
  72. <tbody>
  73. @foreach($datas2 as $data2)
  74. <tr>
  75. <td>{{$data2[0]}}</td>
  76. <td>{{$data2[1]}}</td>
  77. <td>{{$data2[2]}}</td>
  78. <td>{{$data2[3]}}</td>
  79. <td>{{$data2[4]}}</td>
  80. <td>{{$data2[5]}}</td>
  81. <td>{{$data2[6]}}</td>
  82. </tr>
  83. @endforeach
  84. </tbody>
  85. </table>
  86. </body>
  87. </html>