WordPress

Coming Soon

revealability
<?php $__env->startSection('title','View Certificate'); ?> <?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">View Certificate</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 List of Certificate </h4> <div class="col-lg-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>No.</th> <th>Certificate No.</th> <th>Name</th> <th>Enrollment</th> <th>Document</th> <th>Actions</th> </tr> </thead> <tbody> <?php if(!$certificate ->isEmpty()): ?> <?php $__currentLoopData = $certificate; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <th scope="row"><?php echo $data->id?></th> <td><?php echo $data->certificate_no?></td> <td><?php echo $data->learner_name?></td> <td><?php echo $data->enrollment_no?></td> <td><a href="<?php echo e(url('certificate/'.$data->id)); ?>" target="_blank">view document</a></td> <td class="text-left"> <div class="actions"> <a class="btn btn-primary" href="<?php echo e(URL::to('/certificate_pdf/'.$data->id)); ?>">Download</a> <!-- <a class="btn btn-primary" href="<?php echo e(url('certificate/'.$data->id)); ?>">Export to PDF</a> --> <!-- <a class="btn btn-sm bg-success-light" href="<?php echo e(url('edit_learner_assessment/'.$data->id)); ?>"> <i class="fa fa-edit" style="font-size: 2em;"></i> </a> <a href="javascript:void(0)" data-delete_url="" class="btnDel btn btn-sm bg-danger-light"> <i class="fa fa-trash" style="font-size: 2em;"></i> </a> --> </div> </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> </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/show_certificatelist.blade.php ENDPATH**/ ?>