![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/storage/framework/views/ |
<div class="card"> <div class="card-body"> <div class="inner"> <h3>Latest Inspections</h3> </div> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>Code</th> <th>Type</th> <th>Status</th> <th>User</th> <th>Reservation</th> <th>Unit</th> <th>Customer</th> <th>Date</th> </tr> </thead> <tbody> <?php $__currentLoopData = $inspections; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $inspection): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo $inspection->present('code'); ?></td> <td><?php echo $inspection->present('type'); ?></td> <td><?php echo $inspection->present('status'); ?></td> <td><?php echo $inspection->present('user'); ?></td> <td><?php echo $inspection->present('reservation'); ?></td> <td><?php echo $inspection->present('unit'); ?></td> <td><?php echo $inspection->present('customer'); ?></td> <td><?php echo $inspection->present('inspected_at'); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> <tfoot class="text-center"> <tr> <td colspan="8"> <a href="<?php echo e(url('rentpix/inspections')); ?>" class="btn btn-info">Show all inspections</a> </td> </tr> </tfoot> </table> <hr/> </div> </div> </div> <?php /**PATH /home/corals/rentpix.corals.io/Corals/modules/RentPix/resources/views/inspections/latest_inspections_widget.blade.php ENDPATH**/ ?>