HEX
Server: Apache/2.4.46 (Ubuntu)
System: Linux localhost 5.11.0-49-generic #55-Ubuntu SMP Wed Jan 12 17:36:34 UTC 2022 x86_64
User: root (0)
PHP: 7.4.16
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/hrms-production/storage/framework/views/2a7b645a663fee3dba72a92d4af4477f909d8681.php
<?php $__env->startSection('content'); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <section class="content-header">
        <div class="container-fluid">
            <div class="row mb-2">
                <div class="col-sm-6">
                    <h1 id="page-title">List of Employee Eligibility Exam</h1>
                </div>
                
            </div>
        </div><!-- /.container-fluid -->
    </section>

    <!-- Main content -->
    <section class="content">
        <div class="container-fluid">
            
            <div class="row">
                <div class="col-12">
                    <div class="card">
                        <div class="card-body">
                            <table class="table table-bordered table-striped table-sm" id="emplaoyeeTable">
                                <thead>
                                    <tr>
                                        <th>SN.</th>
                                        <th>Emoloyee Code</th>
                                        <th>Emoloyee Name</th>
                                        <th>Eligibility Exam</th>
                                        <th>Examining Body</th>
                                        <th>Paasing Year</th>
                                        <th>Circular/Order No</th>
                                        <th>Circular/Order Date</th>
                                        <th>Remarks</th>
                                        
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php $__currentLoopData = $EmpEligibilityExamList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $EligibilityExam): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                    <tr>
                                        <td><?php echo e($loop->iteration); ?></td>
                                        <td><a href="<?php echo e(url('view-employee',$EligibilityExam->EmployeeId )); ?>" target="blank"><?php echo e($EligibilityExam->EmployeeCode); ?></a></td>
                                        <td><?php echo e($EligibilityExam->EmployeeName); ?></td>
                                        <td><?php echo e($EligibilityExam->EligibilityExamName); ?></td>
                                        <td>
                                            <?php if($EligibilityExam->EligibilityExamName == 'Departmental' && $EligibilityExam->IsExempted == '1'): ?>
                                                Exempted
                                            <?php else: ?>
                                            <?php echo e($EligibilityExam->ExaminingBody); ?>

                                            <?php endif; ?>
                                        </td>
                                        <td>
                                            <?php if($EligibilityExam->ExamDate): ?>
                                            <?php echo e($EligibilityExam->ExamDate); ?>

                                            <?php else: ?>
                                                --
                                            <?php endif; ?>
                                        </td>
                                        <td>
                                            <?php if($EligibilityExam->UniversityCircularNo): ?>
                                            <?php echo e($EligibilityExam->UniversityCircularNo); ?>

                                            <?php else: ?>
                                            <?php echo e($EligibilityExam->OrderNo); ?>

                                            <?php endif; ?>
                                        </td>
                                        <td>
                                            <?php if($EligibilityExam->UniversityCircularNo): ?>
                                            <?php echo e(date('d-M-Y', strtotime($EligibilityExam->UniversityCircularDate))); ?>

                                            <?php elseif($EligibilityExam->OrderDate): ?>
                                            <?php echo e(date('d-M-Y', strtotime($EligibilityExam->OrderDate))); ?>

                                            <?php endif; ?>
                                        </td>
                                        <td><?php echo e($EligibilityExam->Remarks); ?></td>
                                        
                                    </tr>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
                <!-- /.col -->
            </div>
            <!-- /.row -->

        </div>
        <!-- /.container-fluid -->
    </section>
    <!-- /.content -->
</div>
<script>
    $(function() {
              $("#emplaoyeeTable").DataTable({
                  "responsive": true,
                  "lengthChange": true,
                  "autoWidth": false,
                  "lengthMenu": [10, 20, 50, 100, 250, 500],
                  "buttons": ["csv", "excel", "pdf", "print", "colvis"]
                //  "columnDefs": [ { target: 3, visible: false, },],
              }).buttons().container().appendTo('#emplaoyeeTable_wrapper .col-md-6:eq(0)');
          });
  </script>
<!-- /.content-wrapper -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.include.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/hrms/resources/views/admin/Reports/employee-eligibility-exam.blade.php ENDPATH**/ ?>