<?php $__env->startSection('content'); ?>
    <div class="row">
        <h2 style="text-align: center; ">Transaction</h2>
        <hr width="75%" size="2" style="padding-bottom: 30px">
    </div>
    <div class="row" style="text-align:center">
        <h3>Product: </h3> <?php echo e($transaction->product->sort); ?> <?php echo e($transaction->product->fruit()); ?>

        <h3>Seller: </h3> <?php echo e($transaction->product->user->name); ?>

        <h3>Buyer: </h3> <?php echo e($transaction->user->name); ?>

        <h3>Amount: </h3> <?php echo e($transaction->amount); ?> kg
        <h3>Price: </h3> <?php echo e($transaction->cashmoney); ?> €
        <h3>Sum: </h3> <?php echo e($transaction->amount * $transaction->cashmoney); ?> €
    </div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>