/
home
/
sjslayjy
/
public_html
/
scm
/
storage
/
framework
/
views
/
Upload File
HOME
<table id="dynamic-table" class="table table-striped table-bordered table-hover"> <thead> <tr> <th>S.No</th> <th>Operation</th> <th>Name</th> <th>Remark</th> <th>Date</th> </tr> </thead> <tbody> <?php $__currentLoopData = $pr_history_data; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $pr=>$pr_history): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($pr+1); ?></td> <td><?php echo e($pr_history->message); ?></td> <td><?php echo e($pr_history->name); ?></td> <td><?php echo e($pr_history->remark); ?></td> <td><?php echo e($pr_history->created_at); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php /**PATH /home/sjslayjy/public_html/scm/resources/views/dashboard/pr/pr-view-history.blade.php ENDPATH**/ ?>