File manager - Edit - /var/www/payraty/hris/storage/framework/views/ac9f9ede01df9dd480b07a0666a75f90.php
Back
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Manage Interview Schedule')); ?> <?php $__env->stopSection(); ?> <?php $setting = App\Models\Utility::settings(); ?> <?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(__('Interview Schedule')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startPush('css-page'); ?> <link rel="stylesheet" href="<?php echo e(asset('assets/libs/fullcalendar/dist/fullcalendar.min.css')); ?>"> <?php $__env->stopPush(); ?> <?php $__env->startSection('action-button'); ?> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Create Interview Schedule')): ?> <a href="#" data-url="<?php echo e(route('interview-schedule.create')); ?>" data-ajax-popup="true" data-title="<?php echo e(__('Create New Interview Schedule')); ?>" 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-lg-8"> <div class="card"> <div class="card-header"> <div class="row"> <div class="col-lg-6"> <h5><?php echo e(__('Calendar')); ?></h5> <input type="hidden" id="path_admin" value="<?php echo e(url('/')); ?>"> </div> <div class="col-lg-6"> <label for=""></label> <?php if(isset($setting['is_enabled']) && $setting['is_enabled'] == 'on'): ?> <select class="form-control" name="calender_type" id="calender_type" style="float: right;width: 155px;" onchange="get_data()"> <option value="google_calender"><?php echo e(__('Google Calendar')); ?></option> <option value="local_calender" selected="true"><?php echo e(__('Local Calendar')); ?></option> </select> <?php endif; ?> </div> <div class="card-body"> <div id='calendar' class='calendar'></div> </div> </div> </div> </div> </div> <div class="col-lg-4"> <div class="card"> <div class="card-body"> <h4 class="mb-4"><?php echo e(__('Schedule List')); ?></h4> <ul class="event-cards list-group list-group-flush mt-3 w-100"> <li class="list-group-item card mb-3"> <?php $__currentLoopData = $current_month_event; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $schedule): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="row align-items-center justify-content-between"> <div class=" align-items-center"> <div class="card mb-3 border shadow-none"> <div class="px-3"> <div class="row align-items-center"> <div class="col ml-n2 text-sm mb-0 fc-event-title-container"> <h5 class="tcard-text small text-primary"> <?php echo e(!empty($schedule->applications) ? (!empty($schedule->applications->jobs) ? $schedule->applications->jobs->title : '') : ''); ?> </h5> <div class="card-text small text-dark"> <?php echo e(!empty($schedule->applications) ? $schedule->applications->name : ''); ?> </div> <div class="card-text small text-dark"> <?php echo e(\Auth::user()->dateFormat($schedule->date) . ' ' . \Auth::user()->timeFormat($schedule->time)); ?> </div> </div> <div class="col-auto text-right"> <div class="d-inline-flex mb-4"> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Edit Interview Schedule')): ?> <div class="dt-buttons"> <span> <div class="action-btn bg-info me-2"> <a href="#" class="mx-3 btn btn-sm align-items-center" data-url="<?php echo e(route('interview-schedule.edit', $schedule->id)); ?>" data-ajax-popup="true" data-title="<?php echo e(__('Edit ')); ?>" data-bs-toggle="tooltip" data-bs-placement="top" 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 Interview Schedule')): ?> <div class="action-btn bg-danger"> <?php echo Form::open([ 'method' => 'DELETE', 'route' => ['interview-schedule.destroy', $schedule->id], 'id' => 'delete-form-' . $schedule->id, ]); ?> <a href="#!" class="mx-3 btn btn-sm align-items-center bs-pass-para" data-bs-toggle="tooltip" data-bs-placement="top" title="<?php echo e(__('Delete')); ?>"> <span class="text-white"><i class="ti ti-trash"></i></span></a> <?php echo Form::close(); ?> </div> <?php endif; ?> </span> </div> </div> </div> </div> </div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </li> </ul> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('script-page'); ?> <script src="<?php echo e(asset('assets/js/plugins/main.min.js')); ?>"></script> <script type="text/javascript"> $(document).ready(function() { get_data(); }); function get_data() { var calender_type = $('#calender_type :selected').val(); $('#calendar').removeClass('local_calender'); $('#calendar').removeClass('google_calender'); if (calender_type == undefined) { calender_type = 'local_calender'; } $('#calendar').addClass(calender_type); $.ajax({ url: $("#path_admin").val() + "/interview-schedule/get_interview-schedule_data", method: "POST", data: { "_token": "<?php echo e(csrf_token()); ?>", 'calender_type': calender_type }, success: function(data) { (function() { var etitle; var etype; var etypeclass; var calendar = new FullCalendar.Calendar(document.getElementById('calendar'), { headerToolbar: { left: 'prev,next today', center: 'title', right: 'dayGridMonth,timeGridWeek,timeGridDay' }, buttonText: { timeGridDay: "<?php echo e(__('Day')); ?>", timeGridWeek: "<?php echo e(__('Week')); ?>", dayGridMonth: "<?php echo e(__('Month')); ?>" }, slotLabelFormat: { hour: '2-digit', minute: '2-digit', hour12: false, }, themeSystem: 'bootstrap', // slotDuration: '00:10:00', allDaySlot: true, navLinks: true, droppable: true, selectable: true, selectMirror: true, editable: true, dayMaxEvents: true, handleWindowResize: true, events: data, height: 'auto', timeFormat: 'H(:mm)', }); calendar.render(); })(); } }); } </script> <script> $(document).on('change', '.stages', function() { var id = $(this).val(); var schedule_id = $(this).attr('data-scheduleid'); $.ajax({ url: "<?php echo e(route('job.application.stage.change')); ?>", type: 'POST', data: { "stage": id, "schedule_id": schedule_id, "_token": "<?php echo e(csrf_token()); ?>", }, success: function(data) { show_toastr('success', data.success, 'success'); // setTimeout(function () { // window.location.reload(); // }, 1000); } }); }); </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/interviewSchedule/index.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings