⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
3c91c5c703eab164e3b8ec912b060fdbdf5f6ed3.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($keywords['Portfolios'] ?? __('Portfolios')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('user-dashboard')); ?>"> <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($keywords['Portfolio_Page'] ?? __('Portfolio Page')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e($keywords['Portfolios'] ?? __('Portfolios')); ?></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($keywords['Portfolios'] ?? __('Portfolios')); ?></div> </div> <div class="col-lg-3"> </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($keywords['Add_Portfolios'] ?? __('Add Portfolios')); ?></a> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('user.portfolio.bulk.delete')); ?>"><i class="flaticon-interface-5"></i> <?php echo e($keywords['Delete'] ?? __('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($keywords['NO_LANGUAGE_FOUND'] ?? __('NO LANGUAGE FOUND')); ?></h3> <?php else: ?> <?php if(count($portfolios) == 0): ?> <h3 class="text-center"> <?php echo e($keywords['NO_PORTFOLIO_FOUND'] ?? __('NO PORTFOLIO 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($keywords['Image'] ?? __('Image')); ?></th> <th scope="col"><?php echo e($keywords['Title'] ?? __('Title')); ?></th> <th scope="col"><?php echo e($keywords['Category'] ?? __('Category')); ?></th> <th scope="col"><?php echo e($keywords['Featured'] ?? __('Featured')); ?></th> <th scope="col"> <?php echo e($keywords['Serial_Number'] ?? __('Serial Number')); ?> </th> <th scope="col"><?php echo e($keywords['Actions'] ?? __('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $portfolios; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $portfolio): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($portfolio->id); ?>"> </td> <td><img src="<?php echo e(asset('assets/front/img/user/portfolios/' . $portfolio->image)); ?>" alt="" width="80"></td> <td><?php echo e(strlen($portfolio->title) > 30 ? mb_substr($portfolio->title, 0, 30, 'UTF-8') . '...' : $portfolio->title); ?> </td> <td><?php echo e($portfolio->bcategory->name ?? ''); ?></td> <td> <?php if($portfolio->featured == 1): ?> <h2 class="d-inline-block"> <span class="badge badge-success"><?php echo e($keywords['Yes'] ?? __('Yes')); ?></span> </h2> <?php else: ?> <h2 class="d-inline-block"> <span class="badge badge-danger"><?php echo e($keywords['No'] ?? __('No')); ?></span> </h2> <?php endif; ?> </td> <td><?php echo e($portfolio->serial_number); ?></td> <td> <a class="btn btn-secondary btn-sm" href="<?php echo e(route('user.portfolio.edit', $portfolio->id) . '?language=' . $portfolio->language->code); ?>"> <i class="fas fa-edit"></i> </a> <form class="deleteform d-inline-block" action="<?php echo e(route('user.portfolio.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e($portfolio->id); ?>"> <button type="submit" class="btn btn-danger btn-sm deletebtn"> <i class="fas fa-trash"></i> </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($keywords['Add_Portfolios'] ?? __('Add Portfolio')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="px-2"> <label for="" class="mb-2"><strong><?php echo e($keywords['Slider_Images'] ?? __('Slider Images')); ?> **</strong></label> <form action="<?php echo e(route('user.portfolio.sliderstore')); ?>" id="my-dropzone" enctype="multipart/formdata" class="dropzone create"> <?php echo csrf_field(); ?> </form> <p class="text-warning"> <?php echo e($keywords['img_validation_msg'] ?? __('Only png, jpg, jpeg images are allowed')); ?></p> <p class="em text-danger mb-0" id="errslider_images"></p> </div> <form id="ajaxForm" enctype="multipart/form-data" class="modal-form" action="<?php echo e(route('user.portfolio.store')); ?>" method="POST"> <?php echo csrf_field(); ?> <div id="sliders"></div> <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($keywords['Thumbnail'] ?? __('Thumbnail')); ?> **</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" width="170"> </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="row"> <div class="col-lg-6"> <div class="form-group"> <label for=""><?php echo e($keywords['Language'] ?? __('Language')); ?> **</label> <select id="language" name="user_language_id" class="form-control"> <option value="" selected disabled> <?php echo e($keywords['Select_a_language'] ?? __('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> </div> <div class="col-lg-6"> <div class="form-group"> <label for=""><?php echo e($keywords['Title'] ?? __('Title')); ?> **</label> <input type="text" class="form-control" name="title" placeholder="<?php echo e($keywords['Enter_title'] ?? __('Enter title')); ?>" value=""> <p id="errtitle" class="mb-0 text-danger em"></p> </div> </div> </div> <div class="row"> <div class="col-lg-6"> <div class="form-group"> <label for=""><?php echo e($keywords['Category'] ?? __('Category')); ?> **</label> <select id="pcategory" class="form-control" name="category" disabled> <option value="" selected disabled> <?php echo e($keywords['Select_a_category'] ?? __('Select a category')); ?></option> </select> <p id="errcategory" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-6"> <div class="form-group"> <label for=""><?php echo e($keywords['Serial_Number'] ?? __('Serial Number')); ?> **</label> <input type="number" class="form-control ltr" name="serial_number" value="" placeholder="<?php echo e($keywords['Enter_Serial_Number'] ?? __('Enter Serial Number')); ?>"> <p id="errserial_number" class="mb-0 text-danger em"></p> <p class="text-warning mb-0"> <small><?php echo e($keywords['portfolio_Serial_Number_msg'] ?? __('The higher the serial number is, the later the portfolio will be shown')); ?>.</small> </p> </div> </div> </div> <div class="form-group"> <label for=""><?php echo e($keywords['Content'] ?? __('Content')); ?> **</label> <textarea class="form-control summernote" name="content" rows="8" cols="80" placeholder="<?php echo e($keywords['Enter_content'] ?? __('Enter content')); ?>"></textarea> <p id="errcontent" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for="featured" class="my-label mr-3"><?php echo e($keywords['Featured'] ?? __('Featured')); ?></label> <input id="featured" type="checkbox" name="featured" value="1"> <p id="errfeatured" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e($keywords['Meta_Keywords'] ?? __('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($keywords['Meta_Description'] ?? __('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($keywords['Close'] ?? __('Close')); ?></button> <button id="" data-form="ajaxForm" type="button" class="submitBtn btn btn-primary"><?php echo e($keywords['Submit'] ?? __('Submit')); ?></button> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script> "use strict"; // myDropzone is the configuration for the element that has an id attribute // with the value my-dropzone (or myDropzone) Dropzone.options.myDropzone = { acceptedFiles: '.png, .jpg, .jpeg', url: "<?php echo e(route('user.portfolio.sliderstore')); ?>", maxFilesize: 2, // specify the number of MB you want to limit here success: function(file, response) { $("#sliders").append( `<input type="hidden" name="slider_images[]" id="slider${response.file_id}" value="${response.file_id}">` ); // Create the remove button var removeButton = Dropzone.createElement( "<button class='rmv-btn'><i class='fa fa-times'></i></button>"); // Capture the Dropzone instance as closure. var _this = this; // Listen to the click event removeButton.addEventListener("click", function(e) { // Make sure the button click doesn't submit the form: e.preventDefault(); e.stopPropagation(); _this.removeFile(file); rmvimg(response.file_id); }); // Add the button to the file preview element. file.previewElement.appendChild(removeButton); if (typeof response.error != 'undefined') { if (typeof response.file != 'undefined') { document.getElementById('errpreimg').innerHTML = response.file[0]; } } } }; function rmvimg(fileid) { // If you want to the delete the file on the server as well, // you can do the AJAX request here. $.ajax({ url: "<?php echo e(route('user.portfolio.sliderrmv')); ?>", type: 'POST', data: { _token: "<?php echo e(csrf_token()); ?>", fileid: fileid }, success: function(data) { $("#slider" + fileid).remove(); } }); } </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('user.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/public_html/resources/views/user/portfolio/portfolio/index.blade.php ENDPATH**/ ?>