⚝
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 :
6684314534cf986cb13bf02289035dfce3b769f8.php
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Quotes')); ?></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(__('Quote Management')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Quotes')); ?></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-6"> <div class="card-title d-inline-block"><?php echo e(__('Quotes')); ?></div> </div> <div class="col-lg-6"> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('user.quote.bulk.delete')); ?>"><i class="flaticon-interface-5"></i> <?php echo e(__('Delete')); ?></button> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(count($quotes) == 0): ?> <h3 class="text-center"><?php echo e(__('NO QUOTE REQUEST FOUND')); ?></h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3"> <thead> <tr> <th scope="col"> <input type="checkbox" class="bulk-check" data-val="all"> </th> <th scope="col"><?php echo e(__('Name')); ?></th> <th scope="col"><?php echo e(__('Email')); ?></th> <th scope="col"><?php echo e(__('Details')); ?></th> <th scope="col"><?php echo e(__('Status')); ?></th> <th scope="col"><?php echo e(__('Mail')); ?></th> <th scope="col"><?php echo e(__('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $quotes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $quote): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($quote->id); ?>"> </td> <td><?php echo e($quote->name); ?></td> <td><?php echo e($quote->email); ?></td> <td> <button class="btn btn-secondary btn-sm" data-toggle="modal" data-target="#detailsModal<?php echo e($quote->id); ?>"><i class="fas fa-eye"></i> <?php echo e(__('View')); ?></button> </td> <td> <form id="statusForm<?php echo e($quote->id); ?>" class="d-inline-block" action="<?php echo e(route('user.quotes.status')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="quote_id" value="<?php echo e($quote->id); ?>"> <select class="form-control <?php if($quote->status == 0): ?> bg-warning <?php elseif($quote->status == 1): ?> bg-primary <?php elseif($quote->status == 2): ?> bg-success <?php elseif($quote->status == 3): ?> bg-danger <?php endif; ?> " name="status" onchange="document.getElementById('statusForm<?php echo e($quote->id); ?>').submit();"> <option value="0" <?php echo e($quote->status == 0 ? 'selected' : ''); ?>><?php echo e(__('Pending')); ?></option> <option value="1" <?php echo e($quote->status == 1 ? 'selected' : ''); ?>><?php echo e(__('Processing')); ?></option> <option value="2" <?php echo e($quote->status == 2 ? 'selected' : ''); ?>><?php echo e(__('Completed')); ?></option> <option value="3" <?php echo e($quote->status == 3 ? 'selected' : ''); ?>><?php echo e(__('Rejected')); ?></option> </select> </form> </td> <td> <a href="#" class="btn btn-primary btn-sm editbtn" data-target="#mailModal" data-toggle="modal" data-email="<?php echo e($quote->email); ?>"><i class="far fa-envelope"></i> <?php echo e(__('Send')); ?></a> </td> <td> <form class="deleteform d-inline-block" action="<?php echo e(route('user.quote.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="quote_id" value="<?php echo e($quote->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 if ($__env->exists('user.quote.quote-details')) echo $__env->make('user.quote.quote-details', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> <div class="card-footer"> <div class="row"> <div class="d-inline-block mx-auto"> <?php echo e($quotes->links()); ?> </div> </div> </div> </div> </div> </div> <!-- Send Mail Modal --> <div class="modal fade" id="mailModal" 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(__('Send Mail')); ?></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="ajaxEditForm" class="" action="<?php echo e(route('user.quotes.mail')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="form-group"> <label for=""><?php echo e(__('Client Mail')); ?> **</label> <input id="inemail" type="text" class="form-control" name="email" value=""> <p id="eerremail" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Subject')); ?> **</label> <input id="insubject" type="text" class="form-control" name="subject" value=""> <p id="eerrsubject" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Message')); ?> **</label> <textarea id="inmessage" class="form-control summernote" name="message" data-height="150"></textarea> <p id="eerrmessage" class="mb-0 text-danger em"></p> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal"><?php echo e(__('Close')); ?></button> <button id="updateBtn" type="button" class="btn btn-primary"><?php echo e(__('Send Mail')); ?></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/quote/quote.blade.php ENDPATH**/ ?>