File: /var/www/html/hrms-production/storage/framework/views/a19c2c384f4daba56d08613c4cf228fd7d8615d7.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><!-- /.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-header">
<h5>List of Employee Training Details</h5>
</div>
<!-- /.card-header -->
<div class="card-body">
<table id="emplaoyeeTable" class="table table-bordered table-striped table-sm">
<thead>
<tr>
<th>S.No.</th>
<th>Employee Code</th>
<th>Name</th>
<th>Description</th>
<th>Venue</th>
<th>From Date</th>
<th>To Date</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $TrainingDetailList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $TrainingList): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($loop->iteration); ?></td>
<td><a href="<?php echo e(url('view-employee',$TrainingList->EmployeeId )); ?>" target="blank"><?php echo e($TrainingList->EmployeeCode); ?></a></td>
<td><?php echo e($TrainingList->EmployeeName); ?></td>
<td><?php echo e($TrainingList->Description); ?></td>
<td><?php echo e($TrainingList->Venue); ?></td>
<td><?php echo e(date('d-m-Y', strtotime($TrainingList->FromDate))); ?></td>
<td><?php echo e(date('d-m-Y', strtotime($TrainingList->ToDate))); ?></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() {
$("#emplaoyeeTable").DataTable({
"responsive": true,
"lengthChange": true,
"autoWidth": false,
"lengthMenu": [10, 20, 50, 100, 250, 500],
//"buttons": ["copy", "csv", "excel", "pdf", "print", "colvis"]
}).buttons().container().appendTo('#userTable_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/EmployeeProfile/training-detail-list.blade.php ENDPATH**/ ?>