forEmail.php 504 Bytes
<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>