File: /var/www/html/hrms-production/storage/framework/views/b67a6546f3433d6113592fff39a9cdd53f288d65.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">Roster</h1>
</div>
<div class="col-sm-6 text-right">
<button type="button" class="btn btn-sm btn-outline-info mx-1" data-toggle="modal"
data-target="#">Add New</button>
</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">
<!-- /.card-header -->
<div class="card-body">
<table id="emplaoyeeTable" class="table table-bordered table-striped table-sm">
<thead>
<tr>
<th>S.No.</th>
<th>Point Category</th>
<th>The name of the employee on the point</th>
<th>Employee's caste category</th>
<th>Date of appointment to the current post</th>
<th>Date of Birth</th>
<th>Date of Retirement</th>
<th>Caste Certificate No. & Date</th>
<th>Official designation for issuing caste certificate</th>
<th>Caste Validity Certificate No. & Date</th>
<th>Name of the committee issuing caste validity certificate</th>
<th>Remarks</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $EmpRoasterList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $EmpRoaster): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($loop->iteration); ?></td>
<td></td>
<td><a href="<?php echo e(url('view-employee', $EmpRoaster->EmployeeId)); ?>" target="_blank" rel="noopener noreferrer"><?php echo e($EmpRoaster->EmployeeName); ?></a></td>
<td><?php echo e($EmpRoaster->CasteName); ?></td>
<td><?php echo e(date('d-M-y', strtotime($EmpRoaster->PromotionTransferDate))); ?></td>
<td><?php echo e(date('d-M-y', strtotime($EmpRoaster->DateOfBirth))); ?></td>
<td><?php echo e(date('d-M-y', strtotime($EmpRoaster->RetirementDate))); ?></td>
<td>
<?php if($EmpRoaster->CasteCertificateNo): ?>
<?php echo e($EmpRoaster->CasteCertificateNo); ?>
<?php else: ?>
--
<?php endif; ?>
</td>
<td>
<?php if($EmpRoaster->CertificateIssuingOfficer): ?>
<?php echo e($EmpRoaster->CertificateIssuingOfficer); ?>
<?php else: ?>
--
<?php endif; ?>
</td>
<td>
<?php if($EmpRoaster->CastValidityCertificateNo): ?>
<?php echo e($EmpRoaster->CastValidityCertificateNo); ?>, <?php echo e(date('d-M-y', strtotime($EmpRoaster->CasteValidityCertificateDate))); ?>
<?php else: ?>
--
<?php endif; ?>
</td>
<td>
<?php if($EmpRoaster->CertificateIssuingCommittee): ?>
<?php echo e($EmpRoaster->CertificateIssuingCommittee); ?>
<?php else: ?>
--
<?php endif; ?>
</td>
<td></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</form>
</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"]
}).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-roster.blade.php ENDPATH**/ ?>