File manager - Edit - /var/www/payraty/hris/storage/framework/views/4f4584142dbc065b29013742868301e1.php
Back
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Manage Attendance List')); ?> <?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(__('Attendance List')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startPush('script-page'); ?> <script> $('input[name="type"]:radio').on('change', function(e) { var type = $(this).val(); if (type == 'monthly') { $('.month').addClass('d-block'); $('.month').removeClass('d-none'); $('.date').addClass('d-none'); $('.date').removeClass('d-block'); } else { $('.date').addClass('d-block'); $('.date').removeClass('d-none'); $('.month').addClass('d-none'); $('.month').removeClass('d-block'); } }); $('input[name="type"]:radio:checked').trigger('change'); </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'); ?> <?php if(session('status')): ?> <div class="alert alert-danger alert-dismissible fade show" role="alert"> <?php echo session('status'); ?> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <?php endif; ?> <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.index'], 'method' => 'get', 'id' => 'attendanceemployee_filter'])); ?> <div class="row align-items-center justify-content-end"> <div class="col-xl-10"> <div class="row"> <div class="col-3"> <label class="form-label"><?php echo e(__('Type')); ?></label> <br> <div class="form-check form-check-inline form-group"> <input type="radio" id="monthly" value="monthly" name="type" class="form-check-input" <?php echo e(isset($_GET['type']) && $_GET['type'] == 'monthly' ? 'checked' : 'checked'); ?>> <label class="form-check-label" for="monthly"><?php echo e(__('Monthly')); ?></label> </div> <div class="form-check form-check-inline form-group"> <input type="radio" id="daily" value="daily" name="type" class="form-check-input" <?php echo e(isset($_GET['type']) && $_GET['type'] == 'daily' ? 'checked' : ''); ?>> <label class="form-check-label" for="daily"><?php echo e(__('Daily')); ?></label> </div> </div> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12 month"> <div class="btn-box"> <?php echo e(Form::label('month', __('Month'), ['class' => 'form-label'])); ?> <?php echo e(Form::month('month', isset($_GET['month']) ? $_GET['month'] : date('Y-m'), ['class' => 'month-btn form-control month-btn'])); ?> </div> </div> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12 date"> <div class="btn-box"> <?php echo e(Form::label('date', __('Date'), ['class' => 'form-label'])); ?> <?php echo e(Form::date('date', isset($_GET['date']) ? $_GET['date'] : '', ['class' => 'form-control month-btn'])); ?> </div> </div> <?php if(\Auth::user()->type != 'employee'): ?> <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> <?php endif; ?> </div> </div> <div class="col-auto mt-4"> <div class="row"> <div class="col-auto"> <a href="#" class="btn btn-sm btn-primary me-1" onclick="document.getElementById('attendanceemployee_filter').submit(); return false;" data-bs-toggle="tooltip" title="<?php echo e(__('Apply')); ?>" data-original-title="<?php echo e(__('apply')); ?>"> <span class="btn-inner--icon"><i class="ti ti-search"></i></span> </a> <a href="<?php echo e(route('attendanceemployee.index')); ?>" class="btn btn-sm btn-danger me-1" data-bs-toggle="tooltip" title="<?php echo e(__('Reset')); ?>" data-original-title="<?php echo e(__('Reset')); ?>"> <span class="btn-inner--icon"><i class="ti ti-refresh text-white-off "></i></span> </a> <a href="#" data-url="<?php echo e(route('attendance.file.import')); ?>" data-ajax-popup="true" data-title="<?php echo e(__('Import Attendance CSV File')); ?>" data-bs-toggle="tooltip" title="" class="btn btn-sm btn-primary" data-bs-original-title="<?php echo e(__('Import')); ?>"> <i class="ti ti-file"></i> </a> </div> </div> </div> </div> </div> <?php echo e(Form::close()); ?> </div> </div> </div> <div class="col-xl-12"> <div class="card"> <div class="card-header card-body table-border-style"> <div class="table-responsive"> <table class="table" id="pc-dt-simple"> <thead> <tr> <?php if(\Auth::user()->type != 'employee'): ?> <th><?php echo e(__('Employee')); ?></th> <?php endif; ?> <th><?php echo e(__('Date')); ?></th> <th><?php echo e(__('Status')); ?></th> <th><?php echo e(__('Clock In')); ?></th> <th><?php echo e(__('Clock Out')); ?></th> <th><?php echo e(__('Late')); ?></th> <th><?php echo e(__('Early Leaving')); ?></th> <th><?php echo e(__('Overtime')); ?></th> <?php if(Gate::check('Edit Attendance') || Gate::check('Delete Attendance')): ?> <th width="200px"><?php echo e(__('Action')); ?></th> <?php endif; ?> </tr> </thead> <tbody> <?php $__currentLoopData = $attendanceEmployee; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $attendance): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <?php if(\Auth::user()->type != 'employee'): ?> <td><?php echo e(!empty($attendance->employee) ? $attendance->employee->name : ''); ?></td> <?php endif; ?> <td><?php echo e(\Auth::user()->dateFormat($attendance->date)); ?></td> <td><?php echo e($attendance->status); ?></td> <td><?php echo e($attendance->clock_in != '00:00:00' ? \Auth::user()->timeFormat($attendance->clock_in) : '00:00'); ?> </td> <td><?php echo e($attendance->clock_out != '00:00:00' ? \Auth::user()->timeFormat($attendance->clock_out) : '00:00'); ?> </td> <td><?php echo e($attendance->late); ?></td> <td><?php echo e($attendance->early_leaving); ?></td> <td><?php echo e($attendance->overtime); ?></td> <?php if(Gate::check('Edit Attendance') || Gate::check('Delete Attendance')): ?> <td class="Action"> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Edit Attendance')): ?> <div class="action-btn me-2"> <a href="#" class="mx-3 btn btn-sm bg-info align-items-center" data-size="lg" data-url="<?php echo e(URL::to('attendanceemployee/' . $attendance->id . '/edit')); ?>" data-ajax-popup="true" data-size="md" data-bs-toggle="tooltip" title="" data-title="<?php echo e(__('Edit Attendance')); ?>" data-bs-original-title="<?php echo e(__('Edit')); ?>"> <span class="text-white"><i class="ti ti-pencil"></i></span> </a> </div> <?php endif; ?> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Delete Attendance')): ?> <div class="action-btn"> <?php echo Form::open([ 'method' => 'DELETE', 'route' => ['attendanceemployee.destroy', $attendance->id], 'id' => 'delete-form-' . $attendance->id, ]); ?> <a href="#" class="mx-3 btn btn-sm bg-danger align-items-center bs-pass-para" data-bs-toggle="tooltip" title="" data-bs-original-title="Delete" aria-label="Delete"><span class="text-white"><i class="ti ti-trash"></i></span></a> </form> </div> <?php endif; ?> </td> <?php endif; ?> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?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/index.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings