File manager - Edit - /var/www/payraty/hris/storage/framework/views/65a081d1ab180e2f9f9862fec0473cc4.php
Back
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Manage Bulk Attendance')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('breadcrumb'); ?> <li class="breadcrumb-item"><a href="<?php echo e(route('dashboard')); ?>"><?php echo e(__('Home')); ?></a></li> <li class="breadcrumb-item"><?php echo e(__('Bulk Attendance')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startPush('script-page'); ?> <script> $('#present_all').click(function(event) { // alert('hiii'); if (this.checked) { $('.present').each(function() { this.checked = true; }); $('.present_check_in').removeClass('d-none'); $('.present_check_in').addClass('d-block'); } else { $('.present').each(function() { this.checked = false; }); $('.present_check_in').removeClass('d-block'); $('.present_check_in').addClass('d-none'); } }); $('.present').click(function(event) { var div = $(this).parent().parent().parent().parent().find('.present_check_in'); if (this.checked) { div.removeClass('d-none'); div.addClass('d-block'); } else { div.removeClass('d-block'); div.addClass('d-none'); } }); </script> <script> $(document).ready(function() { var b_id = $('#branch_id').val(); // getDepartment(b_id); }); $(document).on('change', 'select[name=branch]', function() { var branch_id = $(this).val(); getDepartment(branch_id); }); function getDepartment(bid) { $.ajax({ url: '<?php echo e(route('monthly.getdepartment')); ?>', type: 'POST', data: { "branch_id": bid, "_token": "<?php echo e(csrf_token()); ?>", }, success: function(data) { $('.department_id').empty(); var emp_selct = `<select class="form-control department_id" name="department_id" id="choices-multiple" placeholder="<?php echo e(__('Select Department')); ?>" > </select>`; $('.department_div').html(emp_selct); $('.department_id').append('<option value=""> <?php echo e(__('Select Department')); ?> </option>'); $.each(data, function(key, value) { $('.department_id').append('<option value="' + key + '">' + value + '</option>'); }); new Choices('#choices-multiple', { removeItemButton: true, }); } }); } </script> <?php $__env->stopPush(); ?> <?php $__env->startSection('action-button'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <div class="col-sm-12"> <div class="mt-2" id="multiCollapseExample1"> <div class="card"> <div class="card-body"> <?php echo e(Form::open(['route' => ['attendanceemployee.bulkattendance'], 'method' => 'get', 'id' => 'bulkattendance_filter'])); ?> <div class="row align-items-center justify-content-end"> <div class="col-xl-10"> <div class="row"> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <div class="btn-box"></div> </div> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <div class="btn-box"> <?php echo e(Form::label('date', __('Date'), ['class' => 'form-label'])); ?> <?php echo e(Form::text('date', isset($_GET['date']) ? $_GET['date'] : date('Y-m-d'), ['class' => 'month-btn form-control d_week ', 'autocomplete' => 'off'])); ?> </div> </div> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <div class="btn-box"> <?php echo e(Form::label('branch', __('branch'), ['class' => 'form-label'])); ?> <?php echo e(Form::select('branch', $branch, isset($_GET['branch']) ? $_GET['branch'] : '', ['class' => 'form-control select branch_id', 'id' => 'branch_id'])); ?> </div> </div> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <div class="btn-box"> <?php echo e(Form::label('department', __('department'), ['class' => 'form-label'])); ?> <?php echo e(Form::select('department', $department, isset($_GET['department']) ? $_GET['department'] : '', ['class' => 'form-control select department_id', 'id' => 'department_id'])); ?> </div> </div> </div> </div> <div class="col-auto"> <div class="row"> <div class="col-auto mt-4"> <a href="#" class="btn btn-sm btn-primary me-1" onclick="document.getElementById('bulkattendance_filter').submit(); return false;" data-bs-toggle="tooltip" title="" data-bs-original-title="apply"> <span class="btn-inner--icon"><i class="ti ti-search"></i></span> </a> <a href="<?php echo e(route('attendanceemployee.bulkattendance')); ?>" class="btn btn-sm btn-danger" data-bs-toggle="tooltip" title="" data-bs-original-title="Reset"> <span class="btn-inner--icon"><i class="ti ti-refresh text-white-off "></i></span> </a> </div> </div> </div> </div> <?php echo e(Form::close()); ?> </div> </div> </div> </div> </div> <div class="col-xl-12"> <div class="card"> <div class="card-header card-body table-border-style"> <?php echo e(Form::open(['route' => ['attendanceemployee.bulkattendance'], 'method' => 'post'])); ?> <div class="table-responsive"> <table class="table" id=""> <thead> <tr> <th width="10%"><?php echo e(__('Employee Id')); ?></th> <th><?php echo e(__('Employee')); ?></th> <th><?php echo e(__('Branch')); ?></th> <th><?php echo e(__('Department')); ?></th> <th> <div class="form-group my-auto"> <div class="custom-control "> <input class="form-check-input" type="checkbox" name="present_all" id="present_all" <?php echo e(old('remember') ? 'checked' : ''); ?>> <label class="custom-control-label" for="present_all"> <?php echo e(__('Attendance')); ?></label> </div> </div> </th> </tr> </thead> <tbody> <?php $__currentLoopData = $employees; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $employee): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $attendance = $employee->present_status($employee->id, isset($_GET['date']) ? $_GET['date'] : date('Y-m-d')); ?> <tr> <td class="Id"> <input type="hidden" value="<?php echo e($employee->id); ?>" name="employee_id[]"> <a href="<?php echo e(route('employee.show', \Illuminate\Support\Facades\Crypt::encrypt($employee->id))); ?>" class="btn btn-outline-primary"><?php echo e(\Auth::user()->employeeIdFormat($employee->employee_id)); ?></a> </td> <td><?php echo e($employee->name); ?></td> <td><?php echo e(!empty($employee->branch) ? $employee->branch->name : ''); ?></td> <td><?php echo e(!empty($employee->department) ? $employee->department->name : ''); ?></td> <td> <div class="row"> <div class="col-md-1"> <div class="form-group"> <div class="custom-control custom-checkbox"> <input class="form-check-input present" type="checkbox" name="present-<?php echo e($employee->id); ?>" id="present<?php echo e($employee->id); ?>" <?php echo e(!empty($attendance) && $attendance->status == 'Present' ? 'checked' : ''); ?>> <label class="custom-control-label" for="present<?php echo e($employee->id); ?>"></label> </div> </div> </div> <div class="col-md-8 present_check_in <?php echo e(empty($attendance) ? 'd-none' : ''); ?> "> <div class="row"> <label class="col-md-2 control-label"><?php echo e(__('In')); ?></label> <div class="col-md-4"> <input type="time" class="form-control timepicker" name="in-<?php echo e($employee->id); ?>" value="<?php echo e(!empty($attendance) && $attendance->clock_in != '00:00:00' ? $attendance->clock_in : App\Models\Utility::getValByName('company_start_time')); ?>"> </div> <label for="inputValue" class="col-md-2 control-label"><?php echo e(__('Out')); ?></label> <div class="col-md-4"> <input type="time" class="form-control timepicker" name="out-<?php echo e($employee->id); ?>" value="<?php echo e(!empty($attendance) && $attendance->clock_out != '00:00:00' ? $attendance->clock_out : App\Models\Utility::getValByName('company_end_time')); ?>"> </div> </div> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <div class="attendance-btn float-end pt-4"> <input type="hidden" value="<?php echo e(isset($_GET['date']) ? $_GET['date'] : date('Y-m-d')); ?>" name="date"> <input type="hidden" value="<?php echo e(isset($_GET['branch']) ? $_GET['branch'] : ''); ?>" name="branch"> <input type="hidden" value="<?php echo e(isset($_GET['department']) ? $_GET['department'] : ''); ?>" name="department"> <?php echo e(Form::submit(__('Update'), ['class' => 'btn btn-primary'])); ?> </div> <?php echo e(Form::close()); ?> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('script-page'); ?> <script> $(document).ready(function() { if ($('.daterangepicker').length > 0) { $('.daterangepicker').daterangepicker({ format: 'yyyy-mm-dd', locale: { format: 'YYYY-MM-DD' }, }); } }); </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('layouts.admin', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/payraty/hris/resources/views/attendance/bulk.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings