
<?php foreach($this->items as $item): ?>
<div class="row no-gutters bg-white border mb-2 product"><?php if($this->isEditable): ?>
    <div class="name col-lg-9 p-2 border-right"><?php if($this->linkProducts && $item['href']): ?><a href="<?php echo $item['href']; ?>"><?php echo $item['name']; ?></a><?php else: ?><?php echo $item['name']; ?><?php endif; ?></div>
    <div class="info col-lg-13 p-2 border-right">
        <?php if(!empty($item['attributes'])): ?>
        <ul>
        <?php foreach($item['attributes'] as $name => $value): ?>
            <li><strong><?= $this->attributeLabel($name) ?>:</strong> <?= $this->attributeValue($name, $value, ['html'=>true, 'item'=>$item['item']]) ?></li>
        <?php endforeach; ?>
        </ul>
        <?php endif; ?>
        <div class="price text-right px-2"><?php echo $item['quantity']; ?> x <?php echo $item['price']; ?> = <span class="total"><?php echo $item['total']; ?></span></div>
    </div>
    <div class="remove col-lg-2 p-2 text-right"><a href="<?php echo $item['remove_href']; ?>" title="<?php echo $item['remove_title']; ?>"><i class="far fa-trash-alt"></i><?php //echo $item['remove_link']; ?></a></div><?php endif; ?>
</div>
<?php endforeach; ?>
<div class="row no-gutters bg-white py-3 border">
<div class="subtotal col-lg-22 text-right font-weight-bold px-3 pb-3"><span class="label"><?php echo $GLOBALS['TL_LANG']['MSC']['subTotalLabel']; ?></span>: <?php echo $this->subtotal; ?></div><?php if ($this->buttons['cart']): ?>
<div class="cart col-lg-22 text-right"><a class="btn btn-secondary" href="<?php echo $this->buttons['cart']['href']; ?>"><?php echo $this->buttons['cart']['label']; ?></a></div><?php endif; if ($this->buttons['checkout']): ?>
<div class="checkout col-lg-22 text-right"><a class="btn btn-success" href="<?php echo $this->buttons['checkout']['href']; ?>"><?php echo $this->buttons['checkout']['label']; ?></a></div><?php endif; ?>
</div>
