/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<table class="table table-striped"> <thead> <tr> <th>Circle Name</th> <th>Warehouse TRC-Engineer</th> <th>TRC Assigned Date</th> <th>Repaired date</th> <th>Item Code</th> <th>Item Description</th> <th>UOM</th> <th>Category</th> <th>Repaired Qty</th> <th>Faulty Qty</th> <th>Spare Component Code</th> <th>Component Description</th> <th>Qty</th> <th>Value</th> <th>Is Component</th> </tr> </thead> <tbody> <?php $trc_id = ''; ?> <?php $__currentLoopData = $all_trc; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$trc): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <?php if($trc_id == $trc->id): ?> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td><?php echo e($trc->component_code); ?></td> <td><?php echo e($trc->component_code); ?></td> <td><?php echo e($trc->component_qty); ?></td> <td><?php echo e($trc->component_rate); ?></td> <td><?php echo e(($trc->is_component == 1)?'Yes':'No'); ?></td> <?php else: ?> <td><?php echo e($trc->warehouse); ?></td> <td><?php echo e($trc->trc_engineer); ?></td> <td></td> <td><?php echo e($trc->created_at); ?></td> <td><?php echo e($trc->spare_code); ?></td> <td><?php echo e($trc->description); ?></td> <td><?php echo e($trc->uom); ?></td> <td><?php echo e($trc->category); ?></td> <td><?php echo e($trc->qty); ?></td> <td></td> <td><?php echo e($trc->component_code); ?></td> <td><?php echo e($trc->component_code); ?></td> <td><?php echo e($trc->component_qty); ?></td> <td><?php echo e($trc->component_rate); ?></td> <td><?php echo e(($trc->is_component == 1)?'Yes':'No'); ?></td> <?php endif; ?> <?php $trc_id = $trc->id; ?> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /var/www/assets/resources/views/exports/consumption-report-trc.blade.php ENDPATH**/ ?>