WordPress

Coming Soon

revealability
<?php $__env->startSection('title','View Curriculum Planning'); ?> <?php $__env->startSection('main_container'); ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <h3 class="page-title"> </h3> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Curriculum Planning</li> </ol> </nav> </div> <div class="row grid-margin"> <div class="col-12"> <div class="card"> <div class="card-body"> <h4 class="card-title">View Curriculum Planning</h4> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title"></h4> <div class="table-responsive"> <table class="table "> <thead> <tr> <th>No.</th> <th>Curriculum Plans</th> </tr> </thead> <tbody> <?php if(!$curriculum ->isEmpty()): ?> <?php $__currentLoopData = $curriculum; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($data->id); ?></td> <td> <a href="<?php echo e(URL::asset('public/Admin/upload/curriculum_document').'/'.$data->curriculum_document); ?>" target="_blank"> <div style="color:black;"><h4><?php echo e($data->name); ?></h4></div> </a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php else: ?> <p class="text-danger mt-2" style="padding-left:450px;">No Data Available</p> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <?php $__env->stopSection(); ?> <?php echo $__env->make('User.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/opaldemo/public_html/center.iimtstudies.co.uk/resources/views/User/view_curriculum.blade.php ENDPATH**/ ?>