svod.blade.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <div class="table-responsive js-subtable-scroll">
  2. <table class="table small svod">
  3. <thead>
  4. <tr class="vertical">
  5. <th>Округ</th>
  6. <th>Сумма</th>
  7. <th>Сдано на сумму</th>
  8. <th colspan="2">Всего</th>
  9. <th colspan="2">Готов к монтажу</th>
  10. <th colspan="2">В монтаже</th>
  11. <th colspan="2">Готов к сдаче</th>
  12. <th colspan="2">Сдан</th>
  13. <th colspan="2">Остаток</th>
  14. <th colspan="2">Двор всего</th>
  15. <th colspan="2">Двор установлено</th>
  16. <th colspan="2">Двор остаток</th>
  17. <th colspan="2">Школы всего</th>
  18. <th colspan="2">Школы установлено</th>
  19. <th colspan="2">Школы остаток</th>
  20. <th colspan="2">Знаковые всего</th>
  21. <th colspan="2">Знаковые установлено</th>
  22. <th colspan="2">Знаковые остаток</th>
  23. </tr>
  24. <tr class="text-center">
  25. <th></th>
  26. <th></th>
  27. <th></th>
  28. <th>Адр</th>
  29. <th>МАФ</th>
  30. <th>Адр</th>
  31. <th>МАФ</th>
  32. <th>Адр</th>
  33. <th>МАФ</th>
  34. <th>Адр</th>
  35. <th>МАФ</th>
  36. <th>Адр</th>
  37. <th>МАФ</th>
  38. <th>Адр</th>
  39. <th>МАФ</th>
  40. <th>Адр</th>
  41. <th>МАФ</th>
  42. <th>Адр</th>
  43. <th>МАФ</th>
  44. <th>Адр</th>
  45. <th>МАФ</th>
  46. <th>Адр</th>
  47. <th>МАФ</th>
  48. <th>Адр</th>
  49. <th>МАФ</th>
  50. <th>Адр</th>
  51. <th>МАФ</th>
  52. <th>Адр</th>
  53. <th>МАФ</th>
  54. <th>Адр</th>
  55. <th>МАФ</th>
  56. <th>Адр</th>
  57. <th>МАФ</th>
  58. </tr>
  59. </thead>
  60. <tbody>
  61. @foreach($byDistrict as $vvv)
  62. <tr>
  63. @foreach($vvv as $v)
  64. <td class="text-center svod-{{ $loop->iteration }}">{!! $v !!}</td>
  65. @endforeach
  66. </tr>
  67. @endforeach
  68. </tbody>
  69. </table>
  70. </div>
  71. {{--@dump($byDistrict)--}}