| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <div class="table-responsive js-subtable-scroll">
- <table class="table small svod">
- <thead>
- <tr class="vertical">
- <th>Округ</th>
- <th>Сумма</th>
- <th>Сдано на сумму</th>
- <th colspan="2">Всего</th>
- <th colspan="2">Готов к монтажу</th>
- <th colspan="2">В монтаже</th>
- <th colspan="2">Готов к сдаче</th>
- <th colspan="2">Сдан</th>
- <th colspan="2">Остаток</th>
- <th colspan="2">Двор всего</th>
- <th colspan="2">Двор установлено</th>
- <th colspan="2">Двор остаток</th>
- <th colspan="2">Школы всего</th>
- <th colspan="2">Школы установлено</th>
- <th colspan="2">Школы остаток</th>
- <th colspan="2">Знаковые всего</th>
- <th colspan="2">Знаковые установлено</th>
- <th colspan="2">Знаковые остаток</th>
- </tr>
- <tr class="text-center">
- <th></th>
- <th></th>
- <th></th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- <th>Адр</th>
- <th>МАФ</th>
- </tr>
- </thead>
- <tbody>
- @foreach($byDistrict as $vvv)
- <tr>
- @foreach($vvv as $v)
- <td class="text-center svod-{{ $loop->iteration }}">{!! $v !!}</td>
- @endforeach
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- {{--@dump($byDistrict)--}}
|