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

    <div class="flex-item">

        <div class="picture">
            <a href="<?php echo e(url('/product', $product->id)); ?>">
                <img src="<?php echo e($product->firstpic()); ?>">
            </a>
        </div>
        <a href="<?php echo e(url('/product', $product->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><?php echo e($product->price()); ?> €/kg</p>
        <p><?php echo e($product->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; ?>