File: /var/www/html/hrms-production/storage/framework/views/e790e3f956f584a3d7fb7441d2ff5bfe9084fb62.php
<?php $__env->startSection('content'); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- Main content -->
<section class="content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header">
<h5>List of Leave Application</h5>
</div>
<!-- /.card-header -->
<div class="card-body">
<table id="EmployeeTable" class="table table-bordered table-striped table-sm">
<thead>
<tr>
<th>S.No.</th>
<th>Employee Code</th>
<th>Employee Name</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $AllEmployee; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $EmployeeDetail): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($loop->iteration); ?></td>
<td>
<a href="<?php echo url('/employee-application-details'); ?>/<?php echo e($EmployeeDetail->EmployeeId); ?>"><?php echo e($EmployeeDetail->EmployeeCode); ?></a>
</td>
<td><?php echo e($EmployeeDetail->EmployeeName); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
<!-- /.card-body -->
</div>
<!-- /.card -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</section>
<!-- /.content -->
</div>
<script>
$(function() {
$("#EmployeeTable").DataTable({
"responsive": true,
"lengthChange": true,
"autoWidth": false,
"lengthMenu": [10, 20, 50, 100, 250, 500],
"buttons": ["csv", "excel", "pdf"]
}).buttons().container().appendTo('#EmployeeTable_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/LeaveManagement/employee-leaves.blade.php ENDPATH**/ ?>