One Hat Cyber Team
Your IP :
216.73.216.93
Server IP :
178.63.234.5
Server :
Linux whm01.ins-jo.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Server Software :
Apache
PHP Version :
8.1.32
Buat File
|
Buat Folder
Dir :
~
/
home
/
business
/
www
/
storage
/
framework
/
views
/
Edit File Name :
e03cbec5b8f93969925a6ad1aac609ea74f759dc.php
<?php $selLang = \App\Models\User\Language::where([['code', \Illuminate\Support\Facades\Session::get('currentLangCode')], ['user_id', \Illuminate\Support\Facades\Auth::id()]])->first(); $userDefaultLang = \App\Models\User\Language::where([['user_id', \Illuminate\Support\Facades\Auth::id()], ['is_default', 1]])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::id())->get(); ?> <?php if(!empty($selLang) && $selLang->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form:not(.modal-form) input, form:not(.modal-form) textarea, form:not(.modal-form) select, select[name='userLanguage'] { direction: rtl; } form:not(.modal-form) .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Services')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('user.services.index')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Service Page')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Services')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="row"> <div class="col-lg-4"> <div class="card-title d-inline-block"><?php echo e(__('Services')); ?></div> </div> <div class="col-lg-3"> <?php if(!is_null($userDefaultLang)): ?> <?php if(!empty($userLanguages)): ?> <select name="userLanguage" class="form-control" onchange="window.location='<?php echo e(url()->current() . '?language='); ?>'+this.value"> <option value="" selected disabled><?php echo e(__('Select a Language')); ?></option> <?php $__currentLoopData = $userLanguages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($lang->code); ?>" <?php echo e($lang->code == request()->input('language') ? 'selected' : ''); ?>> <?php echo e($lang->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> <?php endif; ?> <?php endif; ?> </div> <div class="col-lg-4 offset-lg-1 mt-2 mt-lg-0"> <?php if(!is_null($userDefaultLang)): ?> <a href="#" class="btn btn-primary float-right btn-sm" data-toggle="modal" data-target="#createModal"><i class="fas fa-plus"></i> <?php echo e(__('Add Service')); ?></a> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('user.service.bulk.delete')); ?>"><i class="flaticon-interface-5"></i> <?php echo e(__('Delete')); ?></button> <?php endif; ?> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(is_null($userDefaultLang)): ?> <h3 class="text-center"><?php echo e(__('NO LANGUAGE FOUND')); ?></h3> <?php else: ?> <?php if(count($services) == 0): ?> <h3 class="text-center"><?php echo e(__('NO SERVICE FOUND')); ?></h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3" id="basic-datatables"> <thead> <tr> <th scope="col"> <input type="checkbox" class="bulk-check" data-val="all"> </th> <th scope="col"><?php echo e(__('Image')); ?></th> <?php if($userBs->theme === 'home_six' || $userBs->theme === 'home_seven' || $userBs->theme === 'home_nine'): ?> <th scope="col"><?php echo e(__('Icon')); ?></th> <?php endif; ?> <th scope="col"><?php echo e(__('Name')); ?></th> <th scope="col"><?php echo e(__('Language')); ?></th> <?php if($userBs->theme == 'home_ten' || $userBs->theme == 'home_eleven'): ?> <?php else: ?> <th scope="col"><?php echo e(__('Featured')); ?></th> <?php endif; ?> <th scope="col"><?php echo e(__('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $services; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $service): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($service->id); ?>"> </td> <td> <img src="<?php echo e(asset('assets/front/img/user/services/' . $service->image)); ?>" alt="" width="80"> </td> <?php if($userBs->theme === 'home_six' || $userBs->theme === 'home_seven' || $userBs->theme === 'home_nine'): ?> <td> <i class="<?php echo e($service->icon); ?>"></i> </td> <?php endif; ?> <td><?php echo e(strlen($service->name) > 30 ? mb_substr($service->name, 0, 30, 'UTF-8') . '...' : $service->name); ?> </td> <td><?php echo e($service->language->name); ?></td> <?php if($userBs->theme == 'home_ten' || $userBs->theme == 'home_eleven'): ?> <?php else: ?> <td> <form id="featureForm<?php echo e($service->id); ?>" class="d-inline-block" action="<?php echo e(route('user.service.feature')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="service_id" value="<?php echo e($service->id); ?>"> <select class="form-control <?php echo e($service->featured == 1 ? 'bg-success' : 'bg-danger'); ?>" name="featured" onchange="document.getElementById('featureForm<?php echo e($service->id); ?>').submit();"> <option value="1" <?php echo e($service->featured == 1 ? 'selected' : ''); ?>> <?php echo e(__('Yes')); ?> </option> <option value="0" <?php echo e($service->featured == 0 ? 'selected' : ''); ?>> <?php echo e(__('No')); ?> </option> </select> </form> </td> <?php endif; ?> <td> <a class="btn btn-secondary btn-sm" href="<?php echo e(route('user.service.edit', $service->id) . '?language=' . $service->language->code); ?>"> <span class="btn-label"> <i class="fas fa-edit"></i> </span> <?php echo e(__('Edit')); ?> </a> <form class="deleteform d-inline-block" action="<?php echo e(route('user.service.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e($service->id); ?>"> <button type="submit" class="btn btn-danger btn-sm deletebtn"> <span class="btn-label"> <i class="fas fa-trash"></i> </span> <?php echo e(__('Delete')); ?> </button> </form> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> <?php endif; ?> </div> </div> </div> </div> </div> </div> <!-- Create Blog Modal --> <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('Add Service')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="ajaxForm" enctype="multipart/form-data" class="modal-form" action="<?php echo e(route('user.service.store')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="row"> <div class="col-lg-12"> <div class="form-group"> <div class="col-12 mb-2"> <label for="image"><strong><?php echo e(__('Image')); ?>*</strong></label> </div> <div class="col-md-12 showImage mb-3"> <img src="<?php echo e(asset('assets/admin/img/noimage.jpg')); ?>" alt="..." class="img-thumbnail"> </div> <input type="file" name="image" id="image" class="form-control"> <p id="errimage" class="mb-0 text-danger em"></p> </div> </div> </div> <div class="form-group"> <label for=""><?php echo e(__('Language')); ?> **</label> <select name="user_language_id" class="form-control"> <option value="" selected disabled><?php echo e(__('Select a language')); ?></option> <?php $__currentLoopData = $userLanguages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($lang->id); ?>"><?php echo e($lang->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> <p id="erruser_language_id" class="mb-0 text-danger em"></p> </div> <?php if($userBs->theme === 'home_six' || $userBs->theme === 'home_seven' || $userBs->theme === 'home_nine'): ?> <div class="form-group"> <label for=""><?php echo e(__('Service Icon')); ?> **</label> <div class="btn-group d-block"> <button type="button" class="btn btn-primary iconpicker-component"><i class="fa fa-fw fa-heart"></i></button> <button type="button" class="icp icp-dd btn btn-primary dropdown-toggle" data-selected="fa-car" data-toggle="dropdown"> </button> <div class="dropdown-menu"></div> </div> <input id="inputIcon" type="hidden" name="icon" value=""> <?php if($errors->has('icon')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('icon')); ?></p> <?php endif; ?> <div class="text-warning mt-2"> <small><?php echo e(__('NB: click on the dropdown icon to select a service icon.')); ?></small> </div> <p id="erricon" class="mb-0 text-danger em"></p> </div> <?php endif; ?> <div class="form-group"> <label for=""><?php echo e(__('Name')); ?> **</label> <input type="text" class="form-control" name="name" value=""> <p id="errname" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Content')); ?></label> <textarea class="form-control summernote" name="content" rows="8" cols="80"></textarea> <p id="errcontent" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Serial Number')); ?> **</label> <input type="number" class="form-control ltr" name="serial_number" value=""> <p id="errserial_number" class="mb-0 text-danger em"></p> <p class="text-warning mb-0"> <small><?php echo e(__('The higher the serial number is, the later the service will be shown.')); ?></small> </p> </div> <?php if( $userBs->theme != 'home_nine' || $userBs->theme != 'home_ten' || $userBs->theme != 'home_eleven' || $userBs->theme != 'home_twelve'): ?> <?php else: ?> <div class="form-group"> <label for="featured" class="my-label mr-3"><?php echo e(__('Featured')); ?></label> <input id="featured" type="checkbox" name="featured" value="1"> <p id="errfeatured" class="mb-0 text-danger em"></p> </div> <?php endif; ?> <div class="form-group"> <div class="d-flex"> <label class="mr-3"><?php echo e(__('Detail Page')); ?></label> <div class="radio mr-3"> <label><input type="radio" name="detail_page" value="1" checked class="mr-1"><?php echo e(__('Enable')); ?></label> </div> <div class="radio"> <label><input type="radio" name="detail_page" value="0" class="mr-1"><?php echo e(__('Disable')); ?></label> </div> </div> <p id="errdetail_page" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Meta Keywords')); ?></label> <input type="text" class="form-control" name="meta_keywords" value="" data-role="tagsinput"> </div> <div class="form-group"> <label for=""><?php echo e(__('Meta Description')); ?></label> <textarea type="text" class="form-control" name="meta_description" rows="5"></textarea> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal"><?php echo e(__('Close')); ?></button> <button id="submitBtn" type="button" class="btn btn-primary"><?php echo e(__('Submit')); ?></button> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('user.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/business/public_html/resources/views/user/service/index.blade.php ENDPATH**/ ?>
Save