WordPress

Coming Soon

revealability
<?php $__env->startSection('title','View Learner Detail'); ?> <?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">Learner Detail</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 Learner Detail</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 table-striped"> <thead> <tr> <th>#</th> <th>Director of Center</th> <th>Learner's Name</th> <th>Email</th> <th>Phone</th> <th>Enrollment No</th> <th>Enrollment Date</th> <th>Course</th> </tr> </thead> <tbody> <?php if(!$learner_arr ->isEmpty()): ?> <?php $__currentLoopData = $learner_arr; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <th scope="row"><?php echo e($data->id); ?></th> <td><?php echo e($data->name_director); ?></td> <td><?php echo e($data->learner_name); ?></td> <td><?php echo e($data->learner_email); ?></td> <td><?php echo e($data->learner_phone); ?></td> <td><?php echo e($data->learner_enrollment_no); ?></td> <td><?php echo e($data->learner_enrollment_date); ?></td> <td><?php echo e($data->learner_course); ?></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('Admin.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/karnava/public_html/center.karnavati.in/resources/views/Admin/view_learnerlist.blade.php ENDPATH**/ ?>