⚝
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 :
1e5d637f3fb136de23a82b3c241d2415.php
<?php echo e(Form::open(['route' => 'zoom-meeting.store','id'=>'store-user','method'=>'post'])); ?> <div class="modal-body"> <?php $plan= \App\Models\Utility::getChatGPTSettings(); ?> <?php if($plan->chatgpt == 1): ?> <div class="text-end"> <a href="#" data-size="md" class="btn btn-primary btn-icon btn-sm" data-ajax-popup-over="true" data-url="<?php echo e(route('generate',['zoom meeting'])); ?>" data-bs-placement="top" data-title="<?php echo e(__('Generate content with AI')); ?>"> <i class="fas fa-robot"></i> <span><?php echo e(__('Generate with AI')); ?></span> </a> </div> <?php endif; ?> <div class="row"> <div class="form-group col-md-12"> <?php echo e(Form::label('title', __('Title') ,['class'=>'form-label'])); ?> <?php echo e(Form::text('title', null, ['class' => 'form-control', 'placeholder' => __('Enter Meeting Title'), 'required' => 'required'])); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('projects', __('Project'),['class'=>'form-label'])); ?> <?php echo e(Form::select('project_id', $projects, null, ['class' => 'form-control select project_select', 'id' => 'project_select', 'data-toggle' => 'select'])); ?> </div> <div class="form-group col-md-6" > <?php echo e(Form::label('projects', __('Users'),['class'=>'form-label'])); ?> <div id="user_div"> <select class="form-control select employee_select" id="user_id" name="user_id[]" > <option value=""><?php echo e(__('Select User')); ?></option> </select> </div> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('datetime', __('Start Date / Time'),['class'=>'form-label'])); ?> <?php echo e(Form::datetimeLocal('start_date',null,['class' => 'form-control date', 'placeholder' => __('Select Date/Time'), 'required' => 'required'])); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('duration', __('Duration'),['class'=>'form-label'])); ?> <?php echo e(Form::number('duration',null,['class' => 'form-control', 'placeholder' => __('Enter Duration in minutes'), 'required' => 'required'])); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('password', __('Password ( Optional )'),['class'=>'form-label'])); ?> <?php echo e(Form::password('password',['class' => 'form-control', 'placeholder' => __('Enter Password')])); ?> </div> <?php if(isset($settings['google_calendar_enable']) && $settings['google_calendar_enable'] == 'on'): ?> <div class="form-group col-md-6"> <?php echo e(Form::label('synchronize_type',__('Synchronize in Google Calendar ?'),array('class'=>'form-label'))); ?> <div class="form-switch"> <input type="checkbox" class="form-check-input mt-2" name="synchronize_type" id="switch-shadow" value="google_calender"> <label class="form-check-label" for="switch-shadow"></label> </div> </div> <?php endif; ?> <div class="form-group col-md-6"> <div class="form-switch form-switch-right"> <input class="form-check-input" type="checkbox" name="client_id" id="client_id" checked> <label class="form-check-label" for="client_id"><?php echo e(__('Invite Client For Zoom Meeting')); ?></label> </div> </div> </div> </div> <div class="modal-footer"> <input type="button" value="<?php echo e(__('Cancel')); ?>" class="btn btn-light" data-bs-dismiss="modal"> <input type="submit" value="<?php echo e(__('Create')); ?>" class="btn btn-primary"> </div> <?php echo e(Form::close()); ?> <script type="text/javascript"> $(document).on('change', '.project_select', function () { var project_id = $(this).val(); getparent(project_id); }); function getparent(bid) { $.ajax({ url: `<?php echo e(url('zoom-meeting/projects/select')); ?>/${bid}`, type: 'GET', success: function (data) { $("#user_div").html(''); $('#user_div').append('<select class="form-control " id="user_id" name="user_id[]" multiple></select>'); $.each(data, function (i, item) { $('#user_id').append('<option value="' + item.id + '">' + item.name + '</option>'); }); var multipleCancelButton = new Choices('#user_id', { removeItemButton: true, }); if (data == '') { $('#user_id').empty(); } } }); } </script> <?php /**PATH /var/www/crm/resources/views/zoom-meeting/create.blade.php ENDPATH**/ ?>