ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
storage
/
framework
/
views
/
Viewing: 1072293a4a76370b61bb0da9c3280932.php
<?php $__env->startSection('title', translate('stock_limit_products')); ?> <?php $__env->startSection('content'); ?> <div class="content container-fluid"> <div class="mb-3 d-flex flex-column gap-1"> <h2 class="h1 text-capitalize d-flex gap-2 align-items-center"> <img src="<?php echo e(dynamicAsset(path: 'public/assets/back-end/img/inhouse-product-list.png')); ?>" class="mb-1 mr-1" alt=""> <?php echo e(translate('limited_Stocked_Products_List')); ?> <span class="badge text-dark bg-body-secondary fw-semibold rounded-50"> <?php echo e($products->total()); ?> </span> </h2> <p class="d-flex mb-0"> <?php echo e(translate('the_products_are_shown_in_this_list,_which_quantity_is_below')); ?> <?php echo e($stockLimit); ?> </p> </div> <div class="row mt-30"> <div class="col-md-12"> <div class="card"> <div class="card-body d-flex flex-column gap-20"> <div class="d-flex justify-content-between align-items-center gap-20 flex-wrap"> <div class="flex-grow-1 max-w-300 min-w-100-mobile"> <form action="<?php echo e(url()->current()); ?>" method="get"> <?php echo csrf_field(); ?> <div class="input-group"> <input id="datatableSearch_" type="search" name="searchValue" class="form-control" placeholder="<?php echo e(translate('search_by_Product_Name')); ?>" aria-label="Search orders" value="<?php echo e($searchValue); ?>" required> <input type="hidden" value="<?php echo e($status); ?>" name="status"> <div class="input-group-append search-submit"> <button type="submit"> <i class="fi fi-rr-search"></i> </button> </div> </div> </form> </div> <div class="select-wrapper"> <select name="qty_order_sort" class="form-select action-select-onchange-get-view" data-url-prefix="<?php echo e(route('admin.products.stock-limit-list',['in_house', ''])); ?>/?sortOrderQty="> <option value="default" <?php echo e($sortOrderQty== "default"?'selected':''); ?>> <?php echo e(translate('default')); ?> </option> <option value="quantity_asc" <?php echo e($sortOrderQty== "quantity_asc"?'selected':''); ?>> <?php echo e(translate('inventory_quantity(low_to_high)')); ?> </option> <option value="quantity_desc" <?php echo e($sortOrderQty== "quantity_desc"?'selected':''); ?>> <?php echo e(translate('inventory_quantity(high_to_low)')); ?> </option> <option value="order_asc" <?php echo e($sortOrderQty== "order_asc"?'selected':''); ?>> <?php echo e(translate('order_volume(low_to_high)')); ?> </option> <option value="order_desc" <?php echo e($sortOrderQty== "order_desc"?'selected':''); ?>> <?php echo e(translate('order_volume(high_to_low)')); ?> </option> </select> </div> </div> <div class="table-responsive"> <table class="table table-hover table-borderless align-middle"> <thead class="text-capitalize"> <tr> <th><?php echo e(translate('SL')); ?></th> <th><?php echo e(translate('product_Name')); ?></th> <th class="text-center"><?php echo e(translate('unit_price')); ?></th> <th class="text-center"><?php echo e(translate('quantity')); ?></th> <th class="text-center"><?php echo e(translate('orders')); ?></th> <th class="text-center"><?php echo e(translate('active_status')); ?></th> <th class="text-center"><?php echo e(translate('action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <th scope="row"><?php echo e($products->firstItem()+$key); ?></th> <td> <a href="<?php echo e(route('admin.products.view',['addedBy'=>($product['added_by']=='seller'?'vendor' : 'in-house'),'id'=>$product['id']])); ?>" class="media align-items-center gap-2"> <img src="<?php echo e(getStorageImages(path:$product->thumbnail_full_url,type: 'backend-product')); ?>" class="avatar border object-fit-cover" alt=""> <span class="media-body text-dark text-primary-hover"> <?php echo e(Str::limit($product['name'], 20)); ?> </span> </a> </td> <td class="text-center"> <?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']), currencyCode: getCurrencyCode())); ?> </td> <td> <div class="d-flex align-items-center gap-1 product-quantity justify-content-center"> <span class="lh-1"><?php echo e($product['current_stock']); ?></span> <button class="btn p-0 border-0 fs-18 action-update-product-quantity" id="<?php echo e($product['id']); ?>" data-url="<?php echo e(route('admin.products.get-variations').'?id='.$product['id']); ?>" type="button" data-bs-target="#update-quantity" data-bs-toggle="modal" title="<?php echo e(translate('update_quantity')); ?>"> <i class="fi fi-sr-add text-primary"></i> </button> </div> </td> <td class="text-center"><?php echo e(($product['order_details_count'])); ?></td> <td class="text-center"> <?php if($product->request_status != 2 ): ?> <form action="<?php echo e(route('admin.products.status-update')); ?>" method="post" id="product-status<?php echo e($product['id']); ?>-form" class="no-reload-form"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e($product['id']); ?>"> <label class="switcher mx-auto" for="product-status<?php echo e($product['id']); ?>"> <input class="switcher_input custom-modal-plugin" type="checkbox" value="1" name="status" id="product-status<?php echo e($product['id']); ?>" <?php echo e($product['status'] == 1 ? 'checked' : ''); ?> data-modal-type="input-change-form" data-modal-form="#product-status<?php echo e($product['id']); ?>-form" data-on-image="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/modal/product-status-on.png')); ?>" data-off-image="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/modal/product-status-off.png')); ?>" data-on-title="<?php echo e(translate('Want_to_Turn_ON').' '.$product['name'].' '.translate('status')); ?>" data-off-title="<?php echo e(translate('Want_to_Turn_OFF').' '.$product['name'].' '.translate('status')); ?>" data-on-message="<p><?php echo e(translate('if_enabled_this_product_will_be_available_on_the_website_and_customer_app')); ?></p>" data-off-message="<p><?php echo e(translate('if_disabled_this_product_will_be_hidden_from_the_website_and_customer_app')); ?></p>" data-on-button-text="<?php echo e(translate('turn_on')); ?>" data-off-button-text="<?php echo e(translate('turn_off')); ?>"> <span class="switcher_control"></span> </label> </form> <?php endif; ?> </td> <td> <div class="d-flex justify-content-center gap-2"> <a class="btn btn-outline-info icon-btn" title="<?php echo e(translate('barcode')); ?>" href="<?php echo e(route('admin.products.barcode', [$product['id']])); ?>"> <i class="fi fi-sr-barcode"></i> </a> <a class="btn btn-outline-primary icon-btn" title="<?php echo e(translate('edit')); ?>" href="<?php echo e(route('admin.products.update',[$product['id']])); ?>"> <i class="fi fi-sr-pencil"></i> </a> <span class="btn btn-outline-danger icon-btn delete-data" title="<?php echo e(translate('delete')); ?>" data-id="product-<?php echo e($product['id']); ?>"> <i class="fi fi-rr-trash"></i> </span> </div> <form action="<?php echo e(route('admin.products.delete', [$product['id']])); ?>" method="post" id="product-<?php echo e($product['id']); ?>"> <?php echo csrf_field(); ?> <?php echo method_field('delete'); ?> </form> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <div class="table-responsive mt-4"> <div class="px-4 d-flex justify-content-lg-end"> <?php echo e($products->links()); ?> </div> </div> <?php if(count($products)==0): ?> <?php echo $__env->make('layouts.admin.partials._empty-state',['text'=>'no_product_found'],['image'=>'default'], array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?> <?php endif; ?> </div> </div> </div> </div> </div> <div class="modal fade update-stock-modal" id="update-quantity" tabindex="-1"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <form action="<?php echo e(route('admin.products.update-quantity')); ?>" method="post" class="modal-body p-20"> <?php echo csrf_field(); ?> <div class="rest-part-content"></div> <div class="d-flex justify-content-end gap-10 flex-wrap align-items-center"> <button type="button" class="btn btn-danger px-4" data-bs-dismiss="modal" aria-label="Close"> <?php echo e(translate('close')); ?> </button> <button class="btn btn-primary px-4" type="submit"> <?php echo e(translate('submit')); ?> </button> </div> </form> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home/pollibazaar/public_html/resources/views/admin-views/product/stock-limit-list.blade.php ENDPATH**/ ?>
Coded With 💗 by
0x6ick