File: /var/www/html/hrms-production/storage/framework/views/0a95c51066a70278fb078c641873ca559aa5be23.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-production/resources/views/admin/Reports/employee-eligibility-exam.blade.php ENDPATH**/ ?>