WordPress

Coming Soon

revealability
<?php $__env->startSection('title','View Statutory Compliance'); ?> <?php $__env->startSection('main_container'); ?> <!--== BODY INNER CONTAINER ==--> <div class="sb2-2"> <!--== breadcrumbs ==--> <div class="sb2-2-2"> <ul> <li><a href="index-2"><i class="fa fa-home" aria-hidden="true"></i> Home</a> </li> <li class="active-bre"><a href="#"> Dashboard</a> </li> </ul> </div> <!--== User Details ==--> <div class="sb2-2-3"> <div class="row"> <div class="col-md-12"> <div class="box-inn-sp"> <div class="inn-title"> <h4>Statutory Compliance Details</h4> <p>All about courses, program structure, fees, best course lists (ranking), syllabus, teaching techniques and other details.</p> </div> <div class="tab-inn"> <div class="table-responsive table-desi"> <table class="table table-hover"> <thead> <tr> <th>No.</th> <th>Statutory Compliance Declaration</th> <th>Yes / No</th> <th>View</th> </tr> </thead> <tbody> <?php if(!$statutory_arr->isEmpty()): ?> <?php $__currentLoopData = $statutory_arr; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo $data->id?></td> <td>Are your financial records audited by independent auditor for last 3 years?</td> <td><?php echo $data->q1_confirmation?></td> <td><a href="<?php echo e(url('edit_statutory/'.$data->id)); ?>" class="ad-st-view">Edit</a> <br><a href="<?php echo e(url('add_statutory/'.$data->id)); ?>" class="ad-st-view">Delete</a></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php else: ?> <p class="text-danger mt-2">No Data Available</p> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('Admin.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\iimtlms\resources\views/Admin/view_statutory.blade.php ENDPATH**/ ?>