File manager - Edit - /var/www/payraty/hris/storage/framework/views/3c670995825aeaa2012ae3c59e5450c9.php
Back
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Event')); ?> <?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(__('Event')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startSection('action-button'); ?> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('Create Event')): ?> <a href="#" data-url="<?php echo e(route('event.create')); ?>" data-ajax-popup="true" data-size="lg" data-title="<?php echo e(__('Create New Event')); ?>" data-bs-toggle="tooltip" title="<?php echo e(__('Create')); ?>" class="btn btn-sm btn-primary"> <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(__('Upcoming Events')); ?></h4> <ul class="event-cards list-group list-group-flush mt-3 w-100"> <li class="list-group-item card mb-3"> <div class="row align-items-center justify-content-between"> <div class="align-items-center"> <?php if(!$events->isEmpty()): ?> <?php $__empty_1 = true; $__currentLoopData = $current_month_event; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $event): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <div class="card mb-3 border shadow-none"> <div class="px-3"> <div class="row align-items-center"> <div class="col ml-n2"> <h5 class="text-sm mb-0 fc-event-title-container"> <a href="#" data-size="lg" data-url="<?php echo e(route('event.edit', $event->id)); ?>" data-ajax-popup="true" data-title="<?php echo e(__('Edit Event')); ?>" class="fc-event-title text-primary"> <?php echo e($event->title); ?> </a> </h5><br> <p class="card-text small text-dark mt-0"> <?php echo e(__('Start Date : ')); ?> <?php echo e(\Auth::user()->dateFormat($event->start_date)); ?><br> <?php echo e(__('End Date : ')); ?> <?php echo e(\Auth::user()->dateFormat($event->end_date)); ?> </p> </div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <div class="text-center"> <h6><?php echo e(__('There is no event in this month')); ?></h6> </div> <?php endif; ?> <?php else: ?> <div class="text-center"> <h6><?php echo e(__('There is no event in this month')); ?></h6> </div> <?php endif; ?> </div> </div> </li> </ul> </div> </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() + "/event/get_event_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('event.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="Select Department" multiple> </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('event.getemployee')); ?>', type: 'POST', data: { "department_id": did, "_token": "<?php echo e(csrf_token()); ?>", }, success: function(data) { $('.employee_id').empty(); var emp_selct = ` <select class="form-control employee_id" name="employee_id[]" id="choices-multiple1" placeholder="Select Employee" multiple> </select>`; $('.employee_div').html(emp_selct); $('.employee_id').append('<option value=""> <?php echo e(__('Select Employee')); ?> </option>'); $.each(data, function(key, value) { $('.employee_id').append('<option value="' + key + '">' + value + '</option>'); }); new Choices('#choices-multiple1', { removeItemButton: true, }); } }); } $(document).on('change', '.event_color', function(e) { $('.event_color').parent().removeClass('event_color_active'); $(this).parent().addClass('event_color_active'); }); </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/event/index.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings