File: /var/www/html/hrms-production/storage/framework/views/40ea97ed12002310eab8d65102ccb70def9bc147.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>Records of Employee I-Cards</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="#addEmployeeIcard">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="ICardTable" class="table table-bordered table-striped table-sm">
<thead>
<tr>
<th>S.No.</th>
<th>Employee Name</th>
<th>Designation</th>
<th>Joining Date</th>
<th>Working Place</th>
<th>Recommended Letter No. & Date</th>
<th>Demand Purpose</th>
<th>Aadhar Card</th>
<th>Icard English/Marathi</th>
<th>Receipt of Payment</th>
<th>Outward No. & Date</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $IcardReport; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $IcardReport): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($loop->iteration); ?></td>
<td><a href="<?php echo e(url('/view-employee-icard/'.$IcardReport->EmployeeICardId)); ?>" target="_blank"><?php echo e($IcardReport->EmployeeName); ?></a></td>
<td><?php echo e($IcardReport->DesignationName); ?></td>
<td><?php echo e($IcardReport->JoiningDate); ?></td>
<td><?php echo e($IcardReport->ActualWorkPlaceName); ?></td>
<td><?php echo e($IcardReport->OrderDate); ?></td>
<td><?php echo e($IcardReport->DemandPurpose); ?></td>
<td><?php echo e($IcardReport->AadharCardNo); ?></td>
<td><?php echo e($IcardReport->ICardLanguage); ?></td>
<td> <?php if(!empty($IcardReport->PaymentRecieptPath)): ?>
<a href="<?php echo e(url('/').$IcardReport->PaymentRecieptPath); ?>" target="_blank"><?php echo e(url('/').$IcardReport->PaymentRecieptPath); ?></a>
<?php else: ?>
<?php echo e('Payment Reciept Empty'); ?>
<?php endif; ?>
</td>
<td><?php if(!empty($IcardReport->OrderFilePath)): ?>
<a href="<?php echo e(url('/').$IcardReport->OrderFilePath); ?>" target="_blank"><?php echo e(url('/').$IcardReport->OrderFilePath); ?></a>
<?php else: ?>
<?php echo e('Order File Empty'); ?>
<?php endif; ?>
</td>
<td>
<?php if($IcardReport->ApprovalLock == 0): ?>
<button type="button" title="Edit"
onclick="editIcardReport('<?php echo e($IcardReport->EmployeeICardId); ?>')" ;
class="btn btn-xs btn-outline-info" data-id=""><i
class="fas fa-edit"></i></button>
<button type="button" title="Delete"
onclick="deleteIcardReport('<?php echo e($IcardReport->EmployeeICardId); ?>')" ;
class="btn btn-xs btn-outline-danger"
data-id="'<?php echo e($IcardReport->EmployeeICardId); ?>'"><i
class="fas fa-trash-alt"></i></button>
<?php endif; ?>
</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 formReset()
{
Swal.fire({
title: 'Do Want to reset form?',
text: "Are you sure you want to reset this form!",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, reset it!'
}).then(function() {
$('form#paySlipForm').each(function() {
this.reset();
});
});
}
</script>
<script>
$(function() {
$("#ICardTable").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 if (isset($component)) { $__componentOriginald8eb2df44ec02539df62ef7ab9536108cad7a062 = $component; } ?>
<?php $component = $__env->getContainer()->make(App\View\Components\EmployeeIcardModal::class, []); ?>
<?php $component->withName('EmployeeIcardModal'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginald8eb2df44ec02539df62ef7ab9536108cad7a062)): ?>
<?php $component = $__componentOriginald8eb2df44ec02539df62ef7ab9536108cad7a062; ?>
<?php unset($__componentOriginald8eb2df44ec02539df62ef7ab9536108cad7a062); ?>
<?php endif; ?>
<?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-card.blade.php ENDPATH**/ ?>