File: /var/www/html/hrms-production/storage/framework/views/69fab33f14572760bfe9c834b65b647353242004.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-12">
<h1 id="page-title">Employee details for Retirement & Others Purpose</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">
<!-- /.card-header -->
<div class="card-body">
<table id="emplaoyeeTable" class="table table-bordered table-striped table-sm">
<thead>
<tr>
<th>S.No.</th>
<th>Recruitment Category</th>
<th>Employee Code</th>
<th>Employee Name</th>
<th>Basic Category</th>
<th>Joining Date</th>
<th>D.O.B.</th>
<th>Retirement Date</th>
<th>Name of Scheme</th>
<th>Work Place</th>
<th>Reamrks</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $GetEmpRetirementDetail; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $Retirement): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($loop->iteration); ?></td>
<td></td>
<td><a href="<?php echo e(url('view-employee',$Retirement->EmployeeCode )); ?>" target="_blank" rel="noopener noreferrer"><?php echo e($Retirement->EmployeeCode); ?></a></td>
<td><?php echo e($Retirement->EmployeeName); ?></td>
<td><?php echo e($Retirement->BasicCategoryId); ?></td>
<td><?php echo e(date('d-M-Y', strtotime($Retirement->JoiningDate))); ?></td>
<td><?php echo e(date('d-M-Y', strtotime($Retirement->DateOfBirth))); ?></td>
<td><?php echo e(date('d-M-Y', strtotime($Retirement->RetirementDate))); ?></td>
<td><?php echo e($Retirement->NameOfScheme); ?></td>
<td><?php echo e($Retirement->ActualWorkPlace); ?></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", "colvis"],
}).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-detail-for-retirement.blade.php ENDPATH**/ ?>