<?php $__empty_1 = true; foreach($auctions as $auction): $__empty_1 = false; ?>
    <?php $product = $auction->product ?>

    <div class="flex-item">

        <div class="picture">
            <a href="<?php echo e(url('/auction', $auction->id)); ?>">
                <img src="<?php echo e($product->firstpic()); ?>">
            </a>
        </div>
        <a href="<?php echo e(url('/auction', $auction->id)); ?>"><h3 class="product_heading"><?php echo e($product->sort); ?></h3></a>
        <hr width="75%" size="2">
        <div class="fruit"><?php echo e($product->fruit()); ?></div>

        <p><b><?php echo e($auction->bestBid()); ?> €</b>, <?php echo e($auction->enddate); ?></p>
        <p><?php echo e($auction->amount); ?> kg</p>
        <p><?php echo e($product->location); ?> </p>
    </div>
<?php endforeach; if ($__empty_1): ?>
    <p><?php echo e(Lang::get('search.none')); ?></p>
<?php endif; ?>