1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<table class="table table-hover" id="ResultParseTable"> <thead> <tr> <th>Название товара</th> <th>Цена товара</th> </tr> </thead> <tbody> <?php foreach($model->parserCompetitorsItems as $item): if(in_array($item->id, $one['items'])):?> <tr> <td><?= $item->h1 ?></td> <td><?= $item->price ?></td> </tr> <?php endif; endforeach; ?> </tbody> </table>