<?php if($items->count()): ?> <table cellspacing="0" style="width:100%" border="1"> <tbody> <tr> <td style="height:38px; vertical-align:center"> <p style="text-align:center"><span style="font-family:Times New Roman,Times,serif"><span style="font-size:12pt"><strong><span style="font-size:10.0pt">STT</span></strong></span></span></p> </td> <td style="height:38px; vertical-align:center"> <p style="text-align:center"><span style="font-family:Times New Roman,Times,serif"><span style="font-size:12pt"><strong><span style="font-size:10.0pt">T&ecirc;n thiết bị</span></strong></span></span></p> </td> <td style="height:38px; vertical-align:center"> <p style="text-align:center"><span style="font-family:Times New Roman,Times,serif"><span style="font-size:12pt"><strong><span style="font-size:10.0pt">Số lượng</span></strong></span></span></p> </td> <td style="height:38px; vertical-align:center"> <p style="text-align:center"><span style="font-family:Times New Roman,Times,serif"><span style="font-size:12pt"><strong><span style="font-size:10.0pt">Ghi ch&uacute;</span></strong></span></span></p> </td> </tr> <?php $__currentLoopData = $items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td style="height:38px; vertical-align:top"> <p style="text-align:center"><span style="font-family:Times New Roman,Times,serif"><span style="font-size:12pt"><span style="font-size:10.0pt"><?php echo e($loop->index + 1); ?></span></span></span></p> </td> <td style="height:38px; vertical-align:top"> <p style="text-align:center"><span style="font-family:Times New Roman,Times,serif"><span style="font-size:12pt"><span style="font-size:10.0pt"><?php echo e($item->name); ?></span></span></span></p> </td> <td style="height:38px; vertical-align:top"><?php echo e($item->number); ?></td> <td style="height:38px; vertical-align:top">&nbsp;</td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php endif; ?>