⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.219
Server IP:
15.204.235.159
Server:
Linux srv.techlup.co.ke 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
tech
/
www
/
script
/
storage
/
framework
/
views
/
View File Name :
73d31cff6d0cc1d6a6ef14f67b85a4ae68386411.php
<?php $__env->startSection('content'); ?> <div class="card"> <div class="card-body"> <div class="row mb-30"> <div class="col-lg-6"> <h4><?php echo e(__('Metting List')); ?></h4> </div> <div class="col-lg-6"> <div class="single-filter f-right"> <div class="form-group"> <input type="text" id="data_search" class="form-control" placeholder="Enter Value"> </div> </div> </div> </div> <div class="table-responsive custom-table"> <table class="table"> <thead> <tr> <th class="am-title"><?php echo e(__('Title')); ?></th> <th class="am-author"><?php echo e(__('Live Class')); ?></th> <th class="am-tags"><?php echo e(__('Status')); ?></th> <th class="am-tags"><?php echo e(__('Duration')); ?></th> <th class="am-tags"><?php echo e(__('Date')); ?></th> <th class="am-date"><?php echo e(__('Start Time')); ?></th> <th class="am-date"><?php echo e(__('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $meetings; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <?php echo e($value->title); ?> </td> <td><?php echo e($value->meeting_id); ?></td> <td> <?php if($value->status == 'started'): ?> Live <?php else: ?> upcoming <?php endif; ?> </td> <td><?php echo e($value->duration); ?> minutes</td> <?php if(isset($value->start_time)): ?> <td> <?php $main_date = str_replace("T", " ", $value->start_time); $final_date = substr($main_date, 0,-4); ?> <?php echo e(Carbon\Carbon::parse($final_date)->isoFormat('ll')); ?> </td> <?php else: ?> <td>null</td> <?php endif; ?> <?php if(isset($value->start_time)): ?> <td><?php echo e(Carbon\Carbon::parse($final_date)->isoFormat('LT')); ?></td> <?php else: ?> <td>null</td> <?php endif; ?> <td> <?php if($value->status == 'started'): ?> <a class="live_btn" href="<?php echo e(route('zoom.view',$value->meeting_id)); ?>"><?php echo e(__('Join Live')); ?></a> <?php else: ?> null <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> <tfoot> <tr> <th class="am-title"><?php echo e(__('Title')); ?></th> <th class="am-author"><?php echo e(__('Live Class')); ?></th> <th class="am-tags"><?php echo e(__('Status')); ?></th> <th class="am-tags"><?php echo e(__('Duration')); ?></th> <th class="am-tags"><?php echo e(__('Date')); ?></th> <th class="am-date"><?php echo e(__('Start Time')); ?></th> <th class="am-date"><?php echo e(__('Action')); ?></th> </tr> </tfoot> </table> <?php echo e($meetings->links()); ?> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.backend.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/tech/public_html/script/am-content/Plugins/zoom/views/user/zoom/index.blade.php ENDPATH**/ ?>