WordPress

Coming Soon

revealability
<?php $__env->startSection('title','View Other Resource'); ?> <?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>Other Resource 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>Head Office Status</th> <th>Branch Office Status</th> <th>Head Office Area</th> <th>Branch Office Area</th> <th>View</th> </tr> </thead> <tbody> <?php if(!$resource_arr->isEmpty()): ?> <?php $__currentLoopData = $resource_arr; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo $data->id?></td> <td><?php echo $data->head_status?></td> <td><?php echo $data->branch_status?></td> <td><?php echo $data->head_area?></td> <td><?php echo $data->branch_area?></td> <td><a href="<?php echo e(url('edit_resource/'.$data->id)); ?>" class="ad-st-view">Edit</a> <br><a href="<?php echo e(url('add_other_resource/'.$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_resource.blade.php ENDPATH**/ ?>