/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<table> <thead> <tr> <th colspan="5" style="text-align:center;font-size:20px;">All Spares</th> <th></th> </tr> <tr> <th>Spare Code</th> <th>Description</th> <th>UOM</th> <th>Type</th> <th>Category</th> </tr> </thead> <tbody> <?php $__currentLoopData = $spares; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $spare): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($spare->code); ?></td> <td><?php echo e($spare->description); ?></td> <td><?php echo e($spare->uom); ?></td> <td><?php echo e($spare->type); ?></td> <td><?php echo e($spare->category); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /var/www/assets/resources/views/exports/all-spares.blade.php ENDPATH**/ ?>