/
home
/
sjslayjy
/
public_html
/
mosaram
/
storage
/
framework
/
views
/
Upload File
HOME
<?php if(isset($inOutDetails)): ?> <div class="row"> <div class="col-sm-12"> <table class="table table-bordered"> <thead> <tr style="background: cadetblue;"> <th>In Time</th> <th>In Time [Lat long] </th> <th>Out Time</th> <th>Out Time [Lat long]</th> <th>Stay Time</th> </tr> </thead> <tfoot> <?php $__currentLoopData = $inOutDetails; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $inOutDetail): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e(date('d-M-Y h:i:s A',strtotime($inOutDetail->in_time))); ?></td> <td><?php echo e($inOutDetail->in_time_lat); ?> <?php echo e($inOutDetail->in_time_lng); ?></td> <td><?php if(!is_null($inOutDetail->out_time)): ?> <?php echo e(date('d-M-Y h:i:s A',strtotime($inOutDetail->out_time))); ?> <?php endif; ?></td> <td><?php if(!is_null($inOutDetail->out_time_lat)): ?> <?php echo e($inOutDetail->out_time_lat); ?> <?php echo e($inOutDetail->out_time_lng); ?> <?php endif; ?></td> <td><?php if(!is_null($inOutDetail->hours_stay)): ?> <?php echo e($inOutDetail->hours_stay); ?> <?php endif; ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tfoot> </table> </div> </div> <?php endif; ?> <?php /**PATH /home3/pmmsanvp/public_html/sarojMain/resources/views/in-out-time-modal.blade.php ENDPATH**/ ?>