⚝
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 :
57b428806693692ea2dbcc3acc3f8b1f149c86fb.php
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e($keywords['Saved_QR_Codes'] ?? __('Saved QR Codes')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.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['QR_Codes'] ?? __('QR Codes')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e($keywords['Saved_QR_Codes'] ?? __('Saved QR Codes')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-title d-inline-block"><?php echo e($keywords['QR_Codes'] ?? __('QR Codes')); ?></div> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('user.qrcode.bulk.delete')); ?>"><i class="flaticon-interface-5"></i> <?php echo e($keywords['Delete'] ?? __('Delete')); ?></button> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(count($qrcodes) == 0): ?> <h3 class="text-center"><?php echo e($keywords['NO_QR_CODE_FOUND'] ?? __('NO QR CODE 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['Name'] ?? __('Name')); ?></th> <th scope="col"><?php echo e($keywords['URL'] ?? __('URL')); ?></th> <th scope="col"><?php echo e($keywords['Qr_Code'] ?? __('Qr_Code')); ?> </th> <th scope="col"><?php echo e($keywords['Actions'] ?? __('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $qrcodes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $qrcode): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($qrcode->id); ?>"> </td> <td> <?php echo e($qrcode->name); ?> </td> <td> <?php echo e($qrcode->url); ?> </td> <td> <button class="btn btn-primary" data-toggle="modal" data-target="#qrModal<?php echo e($qrcode->id); ?>"> <i class="far fa-eye"></i> <?php echo e($keywords['Show'] ?? __('Show')); ?> </button> </td> <td> <a href="<?php echo e(asset('assets/front/img/user/qr/' . $qrcode->image)); ?>" download="<?php echo e($qrcode->name); ?>.png" class="btn btn-secondary btn-sm"> <i class="fas fa-download"></i><?php echo e($keywords['Download'] ?? __('Download')); ?> </a> <form class="deleteform d-inline-block" action="<?php echo e(route('user.qrcode.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="qrcode_id" value="<?php echo e($qrcode->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($keywords['Delete'] ?? __('Delete')); ?> </button> </form> </td> </tr> <!-- Modal --> <div class="modal fade" id="qrModal<?php echo e($qrcode->id); ?>" tabindex="-1" role="dialog" aria-labelledby="qrModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="urlsModalLabel"> <?php echo e($keywords['QR_Code'] ?? __('QR Code')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> <div class="p-5 bg-white"> <img src="<?php echo e(asset('assets/front/img/user/qr/' . $qrcode->image)); ?>" alt=""> </div> </div> <div class="modal-footer justify-content-center"> <a href="<?php echo e(asset('assets/front/img/user/qr/' . $qrcode->image)); ?>" download="<?php echo e($qrcode->name); ?>.png" class="btn btn-secondary"> <i class="fas fa-download"></i> <?php echo e($keywords['Download'] ?? __('Download')); ?> </a> </div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </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/id/public_html/resources/views/user/qr/index.blade.php ENDPATH**/ ?>