[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: d8a9c82a734e4fcc53831c7cafbd88826b91d475.php
<?php $__env->startPush('styles_top'); ?> <link rel="stylesheet" href="/assets/default/vendors/daterangepicker/daterangepicker.min.css"> <?php $__env->stopPush(); ?> <?php $__env->startSection('content'); ?> <section> <h2 class="section-title"><?php echo e(trans('quiz.filter_results')); ?></h2> <div class="panel-section-card py-20 px-25 mt-20"> <form action="/panel/quizzes/opens" method="get" class="row"> <div class="col-12 col-lg-4"> <div class="row"> <div class="col-12 col-md-6"> <div class="form-group"> <label class="input-label"><?php echo e(trans('public.from')); ?></label> <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text" id="dateInputGroupPrepend"> <i data-feather="calendar" width="18" height="18" class="text-white"></i> </span> </div> <input type="text" name="from" autocomplete="off" class="form-control <?php if(!empty(request()->get('from'))): ?> datepicker <?php else: ?> datefilter <?php endif; ?>" aria-describedby="dateInputGroupPrepend" value="<?php echo e(request()->get('from','')); ?>"/> </div> </div> </div> <div class="col-12 col-md-6"> <div class="form-group"> <label class="input-label"><?php echo e(trans('public.to')); ?></label> <div class="input-group"> <div class="input-group-prepend"> <span class="input-group-text" id="dateInputGroupPrepend"> <i data-feather="calendar" width="18" height="18" class="text-white"></i> </span> </div> <input type="text" name="to" autocomplete="off" class="form-control <?php if(!empty(request()->get('to'))): ?> datepicker <?php else: ?> datefilter <?php endif; ?>" aria-describedby="dateInputGroupPrepend" value="<?php echo e(request()->get('to','')); ?>"/> </div> </div> </div> </div> </div> <div class="col-12 col-lg-6"> <div class="row"> <div class="col-12 col-lg-6"> <div class="form-group"> <label class="input-label"><?php echo e(trans('quiz.quiz_or_webinar')); ?></label> <input type="text" name="quiz_or_webinar" class="form-control" value="<?php echo e(request()->get('quiz_or_webinar','')); ?>"/> </div> </div> <div class="col-12 col-lg-6"> <div class="form-group"> <label class="input-label"><?php echo e(trans('public.instructor')); ?></label> <input type="text" name="instructor" class="form-control" value="<?php echo e(request()->get('instructor','')); ?>"/> </div> </div> </div> </div> <div class="col-12 col-lg-2 d-flex align-items-center justify-content-end"> <button type="submit" class="btn btn-sm btn-primary w-100 mt-2"><?php echo e(trans('public.show_results')); ?></button> </div> </form> </div> </section> <section class="mt-35"> <div class="d-flex align-items-start align-items-md-center justify-content-between flex-column flex-md-row"> <h2 class="section-title"><?php echo e(trans('quiz.open_quizzes')); ?></h2> </div> <?php if($quizzes->count() > 0): ?> <div class="panel-section-card py-20 px-25 mt-20"> <div class="row"> <div class="col-12 "> <div class="table-responsive"> <table class="table custom-table"> <thead> <tr> <th><?php echo e(trans('public.instructor')); ?></th> <th><?php echo e(trans('quiz.quiz')); ?></th> <th class="text-center"><?php echo e(trans('quiz.quiz_grade')); ?></th> <th class="text-center"><?php echo e(trans('public.date')); ?></th> <th></th> </tr> </thead> <tbody> <?php $__currentLoopData = $quizzes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $quiz): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="text-left"> <div class="user-inline-avatar d-flex align-items-center"> <div class="avatar bg-gray200"> <img src="<?php echo e($quiz->creator->getAvatar()); ?>" class="img-cover" alt=""> </div> <div class=" ml-5"> <span class="d-block text-dark-blue font-weight-500"><?php echo e($quiz->creator->full_name); ?></span> <span class="mt-5 font-12 text-gray d-block"><?php echo e($quiz->creator->email); ?></span> </div> </div> </td> <td class="text-left"> <span class="d-block text-dark-blue font-weight-500"><?php echo e($quiz->title); ?></span> <span class="font-12 mt-5 text-gray d-block"><?php echo e($quiz->webinar->title); ?></span> </td> <td class="text-dark-blue font-weight-500 align-middle"><?php echo e($quiz->quizQuestions->sum('grade')); ?></td> <td class="text-dark-blue font-weight-500 align-middle"><?php echo e(dateTimeFormat($quiz->created_at,'j M Y H:i')); ?></td> <td class="align-middle text-right font-weight-normal"> <div class="btn-group dropdown table-actions table-actions-lg table-actions-lg"> <button type="button" class="btn-transparent dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i data-feather="more-vertical" height="20"></i> </button> <div class="dropdown-menu"> <a href="/panel/quizzes/<?php echo e($quiz->id); ?>/start" class="webinar-actions d-block mt-10"><?php echo e(trans('public.start')); ?></a> <a href="<?php echo e($quiz->webinar->getUrl()); ?>" target="_blank" class="webinar-actions d-block mt-10"><?php echo e(trans('webinars.webinar_page')); ?></a> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> <?php else: ?> <?php echo $__env->make(getTemplate() . '.includes.no-result',[ 'file_name' => 'result.png', 'title' => trans('quiz.quiz_result_no_result'), 'hint' => trans('quiz.quiz_result_no_result_hint'), ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php endif; ?> </section> <div class="my-30"> <?php echo e($quizzes->appends(request()->input())->links('vendor.pagination.panel')); ?> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('scripts_bottom'); ?> <script src="/assets/default/vendors/moment.min.js"></script> <script src="/assets/default/vendors/daterangepicker/daterangepicker.min.js"></script> <?php $__env->stopPush(); ?> <?php echo $__env->make(getTemplate() .'.panel.layouts.panel_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/aoneqssk/public_html/resources/views/web/default/panel/quizzes/opens.blade.php ENDPATH**/ ?>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285