/
home
/
sjslayjy
/
public_html
/
olddevlok
/
storage
/
framework
/
views
/
Upload File
HOME
<table class="table table-striped table-hover"> <thead> <tr> <th>Product</th> <th>Unit</th> <th>Alloted Quantity</th> <th>Remaining Quantity</th> </tr> </thead> <tbody> <?php $__currentLoopData = $allotment->rake_product_allotment_details; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($product->product->name); ?></td> <td><?php echo e($product->unit->unit); ?></td> <td><?php echo e($product->alloted_quantity); ?></td> <td><?php echo e($product->remaining_quantity); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /home/pmmsanvp/public_html/srt/resources/views/dashboard/rake/product-details.blade.php ENDPATH**/ ?>