svod.blade.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>Оплачено на сумму</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. <th colspan="2">Знаковые остаток</th>
  24. </tr>
  25. <tr class="text-center">
  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. <th>Адр</th>
  59. <th>МАФ</th>
  60. </tr>
  61. </thead>
  62. <tbody>
  63. @foreach($byDistrict as $vvv)
  64. <tr>
  65. @foreach($vvv as $v)
  66. <td class="text-center svod-{{ $loop->iteration }}">{!! $v !!}</td>
  67. @endforeach
  68. </tr>
  69. @endforeach
  70. </tbody>
  71. </table>
  72. </div>
  73. {{--@dump($byDistrict)--}}