HEX
Server: Apache/2.4.46 (Ubuntu)
System: Linux localhost 5.11.0-49-generic #55-Ubuntu SMP Wed Jan 12 17:36:34 UTC 2022 x86_64
User: root (0)
PHP: 7.4.16
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/hrms-production/storage/framework/views/15f47ce8f6a70c8a950365a31981162befa79323.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">Pending Employee Category Detail</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>Employee Code</th>
                                        <th>Employee Name</th>
                                        <th>Designation</th>
                                        <th>Joining Date</th>
                                        <th>Created By</th>
                                        <th>Action</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php $__currentLoopData = $GetEmpPendingCategoryDetail; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $PendingCategory): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                    <tr>
                                        <td><?php echo e($loop->iteration); ?></td>
                                        <td><a href="<?php echo e(url('view-employee', $PendingCategory->EmployeeId)); ?>"
                                                target="blank"><?php echo e($PendingCategory->EmployeeCode); ?></a></td>
                                        <td><?php echo e($PendingCategory->EmployeeName); ?></td>
                                        <td><?php echo e($PendingCategory->DesignationName); ?></td>
                                        <td><?php echo e(date('d-M-y', strtotime($PendingCategory->JoiningDate))); ?></td>
                                        <td><?php echo e($PendingCategory->Created_by); ?>, <?php echo e(date('d-M-y h:m a', strtotime($PendingCategory->Created_at))); ?></td>
                                        <td><button type="button" title="Add Category Detail"
                                                onclick="addEmpCategoryDetail('<?php echo e($PendingCategory->EmployeeId); ?>')" ;
                                                class="btn btn-xs btn-outline-info" data-id=""><i
                                                    class="fas fa-user-plus"></i></button></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>
<?php if (isset($component)) { $__componentOriginal156028a72eae721e2c1a7e6c406344eb8ae8e507 = $component; } ?>
<?php $component = $__env->getContainer()->make(App\View\Components\EmployeeCategoryDetailModal::class, []); ?>
<?php $component->withName('EmployeeCategoryDetailModal'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal156028a72eae721e2c1a7e6c406344eb8ae8e507)): ?>
<?php $component = $__componentOriginal156028a72eae721e2c1a7e6c406344eb8ae8e507; ?>
<?php unset($__componentOriginal156028a72eae721e2c1a7e6c406344eb8ae8e507); ?>
<?php endif; ?>

<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/EmployeeProfile/employee-category-detail.blade.php ENDPATH**/ ?>