File manager - Edit - /var/www/payraty/hris/storage/framework/views/4a8c2cd70cff1275b4e21f5f163b1f60.php
Back
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Meeting Calender')); ?> <?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(__('Meeting')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startSection('action-button'); ?> <a href="<?php echo e(route('meeting.index')); ?>" data-bs-toggle="tooltip" title="" class="btn btn-sm btn-primary me-1" data-bs-original-title="<?php echo e(__('List View')); ?>"> <i class="ti ti-list"></i> </a> <?php if(Auth::user()->type == 'company' || Auth::user()->type == 'hr'): ?> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Create Leave')): ?> <a href="#" data-url="<?php echo e(route('meeting.create')); ?>" data-ajax-popup="true" data-title="<?php echo e(__('Create New Meeting')); ?>" data-size="lg" 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 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> </div> <div class="card-body"> <div id='calendar' class='calendar'></div> </div> </div> </div> <div class="col-lg-4"> <div class="card"> <div class="card-body"> <h4 class="mb-4"><?php echo e(__('Meetings')); ?></h4> <ul class="event-cards list-group list-group-flush mt-3 w-100"> <?php $__empty_1 = true; $__currentLoopData = $meetings; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $meeting): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <li class="list-group-item card mb-3"> <div class="row align-items-center justify-content-between"> <div class="col-auto mb-3 mb-sm-0"> <div class="d-flex align-items-center"> <div class="badge theme-avtar bg-primary"> <i class="ti ti-calendar-event"></i> </div> <div class="ms-3"> <h6 class="card-text small text-primary"><?php echo e($meeting->title); ?></h6> <div class="card-text small text-dark"> <?php echo e(\Auth::user()->dateFormat($meeting->date) . ' ' . \Auth::user()->timeFormat($meeting->time)); ?> </div> </div> </div> </div> </div> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <div class="text-center"> <h6><?php echo e(__('There is no meetings in this month')); ?></h6> </div> <?php endif; ?> </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() + "/meeting/get_meeting_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).ready(function() { var b_id = $('#branch_id').val(); getDepartment(b_id); }); $(document).on('change', 'select[name=branch_id]', function() { var branch_id = $(this).val(); getDepartment(branch_id); }); function getDepartment(bid) { $.ajax({ url: '<?php echo e(route('meeting.getdepartment')); ?>', type: 'POST', data: { "branch_id": bid, "_token": "<?php echo e(csrf_token()); ?>", }, success: function(data) { $('.department_id').empty(); var emp_selct = `<select class="department_id form-control multi-select" id="choices-multiple" multiple="" required="required" name="department_id[]"> </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, }); } }); } $(document).on('change', '.department_id', function() { var department_id = $(this).val(); getEmployee(department_id); }); function getEmployee(did) { $.ajax({ url: '<?php echo e(route('meeting.getemployee')); ?>', type: 'POST', data: { "department_id": did, "_token": "<?php echo e(csrf_token()); ?>", }, success: function(data) { $('.employee_id').empty(); $('.employee_id').append('<option value=""><?php echo e(__('Select Employee')); ?></option>'); $.each(data, function(key, value) { $('.employee_id').append('<option value="' + key + '">' + value + '</option>'); }); } }); } </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/meeting/calender.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings