File manager - Edit - /var/www/payraty/hris/storage/framework/views/4f7d93e3b0aaced7daea4242e8aa3cab.php
Back
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Manage Timesheet')); ?> <?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(__('Timesheet')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startSection('action-button'); ?> <a href="#" data-url="<?php echo e(route('timesheet.file.import')); ?>" data-ajax-popup="true" data-title="<?php echo e(__('Import Timesheet CSV file')); ?>" data-bs-toggle="tooltip" title="" class="btn btn-sm btn-primary me-1" data-bs-original-title="<?php echo e(__('Import')); ?>"> <i class="ti ti-file-import"></i> </a> <a href="<?php echo e(route('timesheet.export')); ?>" class="btn btn-sm btn-primary me-1" data-bs-toggle="tooltip" data-bs-original-title="<?php echo e(__('Export')); ?>"> <i class="ti ti-file-export"></i> </a> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Create TimeSheet')): ?> <a href="#" data-url="<?php echo e(route('timesheet.create')); ?>" data-ajax-popup="true" data-size="md" data-title="<?php echo e(__('Create New Timesheet')); ?>" data-bs-toggle="tooltip" title="" class="btn btn-sm btn-primary" data-bs-original-title="<?php echo e(__('Create')); ?>"> <i class="ti ti-plus"></i> </a> <?php endif; ?> <?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' => ['timesheet.index'], 'method' => 'get', 'id' => 'timesheet_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('start_date', __('Start Date'), ['class' => 'form-label'])); ?> <?php echo e(Form::date('start_date', isset($_GET['start_date']) ? $_GET['start_date'] : '', ['class' => 'month-btn form-control current_date', 'autocomplete' => 'off', 'id' => 'current_date'])); ?> </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('end_date', __('End Date'), ['class' => 'form-label'])); ?> <?php echo e(Form::date('end_date', isset($_GET['end_date']) ? $_GET['end_date'] : '', ['class' => 'month-btn form-control current_date', 'autocomplete' => 'off', 'id' => 'current_date'])); ?> </div> </div> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <div class="btn-box"> <?php if(\Auth::user()->type == 'employee'): ?> <?php echo Form::hidden('employee', !empty($employeesList) ? $employeesList->id : 0, ['id' => 'employee_id']); ?> <?php else: ?> <?php echo e(Form::label('employee', __('Employee'), ['class' => 'form-label'])); ?> <?php echo e(Form::select('employee', $employeesList, isset($_GET['employee']) ? $_GET['employee'] : '', ['class' => 'form-control select ', 'id' => 'employee_id'])); ?> <?php endif; ?> </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('timesheet_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('timesheet.index')); ?>" 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"> <div class="card-body py-0"> <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(__('Hours')); ?></th> <th><?php echo e(__('Remark')); ?></th> <th width="200ox"><?php echo e(__('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $timeSheets; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $timeSheet): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <?php if(\Auth::user()->type != 'employee'): ?> <td><?php echo e(!empty($timeSheet->employee) ? $timeSheet->employee->name : ''); ?> </td> <?php endif; ?> <td><?php echo e(\Auth::user()->dateFormat($timeSheet->date)); ?></td> <td><?php echo e($timeSheet->hours); ?></td> <td><?php echo e($timeSheet->remark); ?></td> <td class="Action"> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Edit TimeSheet')): ?> <div class="action-btn me-2"> <a href="#" class="mx-3 btn btn-sm bg-info align-items-center" data-url="<?php echo e(route('timesheet.edit', $timeSheet->id)); ?>" data-ajax-popup="true" data-size="md" data-bs-toggle="tooltip" title="" data-title="<?php echo e(__('Edit Timesheet')); ?>" 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 TimeSheet')): ?> <div class="action-btn"> <?php echo Form::open([ 'method' => 'DELETE', 'route' => ['timesheet.destroy', $timeSheet->id], 'id' => 'delete-form-' . $timeSheet->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> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('script-page'); ?> <script> $(document).ready(function() { var now = new Date(); var month = (now.getMonth() + 1); var day = now.getDate(); if (month < 10) month = "0" + month; if (day < 10) day = "0" + day; var today = now.getFullYear() + '-' + month + '-' + day; $('.current_date').val(today); }); </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/timeSheet/index.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings