product_item.php 1.27 KB
<?php
/** @var \common\modules\product\models\Product $product */

?>
<div class="item" data-id="<?= $product->product_id?>">
    <!--<div class="new">АКЦИЯ</div>
    <div class="top">Toп</div>-->
    <a href="<?= \yii\helpers\Url::to(['catalog/product', 'product' => $product])?>" class="item_link">
        <div class="pic">
        <?php if (empty($product->image)) :?>
            <img src="/images/no_photo.png">
        <?php else :?>
            <img src="/images/<?= $product->image->image?>" alt="<?= $product->image->alt ? $product->image->alt : $product->name?>">
        <?php endif?>
        </div>
        <div class="title_item"><?= $product->name?></div></a>
    <div class="brand">Бренд: <span><?= $product->brand->name?></span></div>
    <div class="type"><?= implode(', ', $product->categoriesNames)?></div>
    <?php if($product->variant) :?>
    <div class="price"><?= $product->variant->price?> <span>грн.</span></div>
    <button class="basket_add_but" data-id="<?= $product->variant->product_variant_id?>">в корзину</button>
    <?php endif?>
    <a href="#" class="compare_add_but" data-id="<?= $product->product_id?>"><span>добавить к сравнению</span></a>
    <img class="item_bottom_img" src="/images/nc_item_bottom.png" alt="">
</div>