One Hat Cyber Team
Your IP :
216.73.216.93
Server IP :
178.63.234.5
Server :
Linux whm01.ins-jo.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Server Software :
Apache
PHP Version :
8.1.32
Buat File
|
Buat Folder
Dir :
~
/
home
/
business
/
www
/
storage
/
framework
/
views
/
View File Name :
0bbeed69a4332c5b8a5b4282a51eec4c0f4fe992.php
<?php $__env->startSection('tab-title'); ?> <?php echo e($keywords['my_courses'] ?? __('My Courses')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('page-name'); ?> <?php echo e($keywords['my_courses'] ?? __('My Courses')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('br-name'); ?> <?php echo e($keywords['my_courses'] ?? __('My Courses')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <!-- Start User Enrolled Course Section --> <section class="user-dashbord pt-100 pb-60"> <div class="container"> <div class="row"> <?php if ($__env->exists('user-front.customer.side-navbar')) echo $__env->make('user-front.customer.side-navbar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="col-lg-9"> <div class="row"> <div class="col-lg-12"> <div class="account-info"> <div class="title"> <h4><?php echo e($keywords['all_courses'] ?? __('All Courses')); ?></h4> </div> <div class="main-info"> <div class="main-table"> <?php if(count($enrolments) == 0): ?> <h5 class="text-center mt-3"> <?php echo e($keywords['no_course_found'] ?? __('No Course Found') . '!'); ?></h5> <?php else: ?> <div class="table-responsive"> <table id="erolled-course-table" class="table table-striped table-bordered" style="width:100%"> <thead> <tr> <th><?php echo e($keywords['course'] ?? __('Course')); ?></th> <th><?php echo e($keywords['duration'] ?? __('Duration')); ?></th> <th><?php echo e($keywords['price'] ?? __('Price')); ?></th> <th><?php echo e($keywords['Actions'] ?? __('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $enrolments; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $enrolment): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if(!empty($enrolment->slug)): ?> <tr> <td width="35%"> <a target="_blank" href="<?php echo e(route('front.user.course.details', [getParam(), 'slug' => $enrolment->slug])); ?>"> <?php if(strlen($enrolment->title > 30)): ?> <?php echo e(mb_substr($enrolment->title, 0, 30, 'UTF-8') . '...'); ?> <?php else: ?> <?php echo e($enrolment->title); ?> <?php endif; ?> </a> </td> <?php $period = $enrolment->course->duration; $array = explode(':', $period); $hour = $array[0]; $courseDuration = \Carbon\Carbon::parse($period); ?> <td><?php echo e($hour == '00' ? '00' : $courseDuration->format('h')); ?>h <?php echo e($courseDuration->format('i')); ?>m</td> <td> <?php if(!is_null($enrolment->course_price)): ?> <?php echo e($enrolment->currency_symbol_position == 'left' ? $enrolment->currency_symbol : ''); ?><?php echo e($enrolment->course_price); ?><?php echo e($enrolment->currency_symbol_position == 'right' ? $enrolment->currency_symbol : ''); ?> <?php else: ?> <?php echo e($keywords['Free'] ?? __('Free')); ?> <?php endif; ?> </td> <td><a href="<?php echo e(route('customer.my_course.curriculum', [getParam(), 'id' => $enrolment->course_id, 'lesson_id' => $enrolment->lesson_id])); ?>" class="btn"><?php echo e($keywords['curriculum'] ?? __('Curriculum')); ?></a> </td> </tr> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- End User Enrolled Course Section --> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script> //===== initialize bootstrap dataTable $('#erolled-course-table').DataTable({ ordering: false, responsive: true }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('user-front.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/business/public_html/resources/views/user-front/customer/course_management/my-courses.blade.php ENDPATH**/ ?>