⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.162
Server IP:
147.93.29.146
Server:
Linux server.tagooz.co 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
webstoremaker
/
www
/
storage
/
framework
/
views
/
View File Name :
52d8aa52b22a137e1a47f754f98144830047af8b.php
<?php $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 $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Counter Information')); ?></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(__('Counter Information Page')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Counter Information')); ?></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(__('Counter Informations')); ?></div> </div> <div class="col-lg-4"> <?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 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 Counter')); ?></a> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('user.counter-information.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($counterInformations) == 0): ?> <h3 class="text-center"> <?php echo e(__('NO COUNTER INFORMATION 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> <?php if( $userBs->theme != 'home_four' && $userBs->theme != 'home_five' && $userBs->theme != 'home_ten' && $userBs->theme != 'home_twelve'): ?> <th scope="col"><?php echo e(__('Icon')); ?></th> <?php else: ?> <?php endif; ?> <th scope="col"><?php echo e(__('Title')); ?></th> <th scope="col"><?php echo e(__('Count')); ?></th> <th scope="col"><?php echo e(__('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $counterInformations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $counterInformation): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($counterInformation->id); ?>"> </td> <?php if( $userBs->theme != 'home_four' && $userBs->theme != 'home_five' && $userBs->theme != 'home_ten' && $userBs->theme != 'home_twelve'): ?> <td><i class="<?php echo e($counterInformation->icon ?? 'fa fa-fw fa-heart'); ?>"></i> </td> <?php else: ?> <?php endif; ?> <td><?php echo e(strlen($counterInformation->title) > 30 ? mb_substr($counterInformation->title, 0, 30, 'UTF-8') . '...' : $counterInformation->title); ?> </td> <td><?php echo e($counterInformation->count); ?></td> <td> <a class="btn btn-secondary btn-sm" href="<?php echo e(route('user.counter-information.edit', $counterInformation->id) . '?language=' . $counterInformation->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.counter-information.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="counter_information_id" value="<?php echo e($counterInformation->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 Skill 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 Counter')); ?> </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.counter-information.store')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="form-group"> <label for=""><?php echo e(__('Language')); ?> **</label> <select id="language" 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_ten' && $userBs->theme != 'home_twelve'): ?> <div class="form-group"> <label for=""><?php echo e(__('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 type="hidden" id="inputIcon" name="icon"> <p id="err_icon" class="mt-1 mb-0 text-danger em"></p> <div class="text-warning mt-2"> <small><?php echo e(__('Click on the dropdown icon to select a icon.')); ?></small> </div> </div> <?php endif; ?> <div class="row"> <div class="col-lg-6"> <div class="form-group"> <label for=""><?php echo e(__('Title')); ?> **</label> <input type="text" class="form-control" name="title" placeholder="<?php echo e(__('Enter title')); ?>" value=""> <p id="errtitle" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-6"> <div class="form-group"> <label for="count"><?php echo e(__('Count')); ?>**</label> <input id="count" type="number" class="form-control ltr" name="count" value="" placeholder="<?php echo e(__('Enter achievement count')); ?>" min="1"> <p id="errcount" class="mb-0 text-danger em"></p> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="form-group"> <label for=""><?php echo e(__('Serial Number')); ?> **</label> <input type="number" class="form-control ltr" name="serial_number" value="" placeholder="<?php echo e(__('Enter Serial Number')); ?>"> <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 Skill will be shown.')); ?></small> </p> </div> </div> </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/webstoremaker/public_html/resources/views/user/counter-information/index.blade.php ENDPATH**/ ?>