123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php $__env->startSection('content'); ?>
- <div class="card">
- <div class="card-header">
- <h5 class="mb-0 h6"><?php echo e(translate('Customer Withdraw Request')); ?></h5>
- </div>
- <div class="card-body">
- <table class="table aiz-table mb-0">
- <thead>
- <tr>
- <th data-breakpoints="lg">#</th>
- <th data-breakpoints="lg"><?php echo e(translate('Date')); ?></th>
- <th><?php echo e(translate('Customer')); ?></th>
- <th data-breakpoints="lg"><?php echo e(translate('Total Amount to Pay')); ?></th>
- <th><?php echo e(translate('Requested Amount')); ?></th>
-
- <th data-breakpoints="lg"><?php echo e(translate('Withdraw type')); ?></th>
- <th data-breakpoints="lg" width="20%"><?php echo e(translate('Message')); ?></th>
- <th data-breakpoints="lg"><?php echo e(translate('Status')); ?></th>
- <th data-breakpoints="lg" width="15%" class="text-right"><?php echo e(translate('Options')); ?></th>
- </tr>
- </thead>
- <tbody>
- <?php $__currentLoopData = $seller_withdraw_requests; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $seller_withdraw_request): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
- <?php $user = \App\Models\User::find($seller_withdraw_request->user_id); ?>
- <?php if($user ): ?>
- <tr>
- <td><?php echo e(($key+1) + ($seller_withdraw_requests->currentPage() - 1)*$seller_withdraw_requests->perPage()); ?></td>
- <td><?php echo e($seller_withdraw_request->created_at); ?></td>
- <td><?php echo e($user->name); ?> (<?php echo e($user->name); ?>)</td>
- <td><?php echo e(single_price($user->balance)); ?></td>
- <td><?php echo e(single_price($seller_withdraw_request->amount)); ?></td>
-
-
- <td>
- <?php if($seller_withdraw_request->w_type == 1): ?>
- <?php echo e(translate('Cash')); ?>
- <?php elseif($seller_withdraw_request->w_type == 2): ?>
- <?php echo e(translate('Bank')); ?>
- <?php elseif($seller_withdraw_request->w_type == 3): ?>
- <?php echo e(translate('USDT')); ?>
- <?php endif; ?>
- </td>
- <td>
- <?php echo e($seller_withdraw_request->message); ?>
- </td>
- <td>
- <?php if($seller_withdraw_request->status == 1): ?>
- <span class="badge badge-inline badge-success"><?php echo e(translate('Paid')); ?></span>
- <?php elseif($seller_withdraw_request->status == 2): ?>
- <span class="badge badge-inline badge-error"><?php echo e(translate('Refuse')); ?></span>
- <?php else: ?>
- <span class="badge badge-inline badge-info"><?php echo e(translate('Pending')); ?></span>
- <?php endif; ?>
- </td>
- <td class="text-right">
- <?php if($seller_withdraw_request->status == 0): ?>
- <a onclick="show_seller_payment_modal('<?php echo e($seller_withdraw_request->user_id); ?>','<?php echo e($seller_withdraw_request->id); ?>');" class="btn btn-soft-warning btn-icon btn-circle btn-sm" href="javascript:void(0);" title="<?php echo e(translate('Pay Now')); ?>">
- <i class="las la-money-bill"></i>
- <a onclick="show_refuse_modal('<?php echo e($seller_withdraw_request->user_id); ?>','<?php echo e($seller_withdraw_request->id); ?>');" class="btn btn-soft-warning btn-icon btn-circle btn-sm" href="javascript:void(0);" title="<?php echo e(translate('Refuse')); ?>">
- <i class="las la-money-bill"></i>
- </a>
- <?php endif; ?>
- <a onclick="show_message_modal('<?php echo e($seller_withdraw_request->id); ?>');" class="btn btn-soft-success btn-icon btn-circle btn-sm" href="javascript:void(0);" title="<?php echo e(translate('Message View')); ?>">
- <i class="las la-eye"></i>
- </a>
- <a href="<?php echo e(route('sellers.payment_history', encrypt($seller_withdraw_request->user_id))); ?>" class="btn btn-soft-primary btn-icon btn-circle btn-sm" title="<?php echo e(translate('Payment History')); ?>">
- <i class="las la-history"></i>
- </a>
- </td>
- </tr>
- <?php endif; ?>
- <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
- </tbody>
- </table>
- <div class="aiz-pagination">
- <?php echo e($seller_withdraw_requests->links()); ?>
- </div>
- </div>
- </div>
- <?php $__env->stopSection(); ?>
- <?php $__env->startSection('modal'); ?>
- <!-- payment Modal -->
- <div class="modal fade" id="payment_modal">
- <div class="modal-dialog">
- <div class="modal-content" id="payment-modal-content">
- </div>
- </div>
- </div>
- <div class="modal fade" id="refuse_modal">
- <div class="modal-dialog">
- <div class="modal-content" id="refuse_modal-content">
- </div>
- </div>
- </div>
- <!-- Message View Modal -->
- <div class="modal fade" id="message_modal">
- <div class="modal-dialog">
- <div class="modal-content" id="message-modal-content">
- </div>
- </div>
- </div>
- <?php $__env->stopSection(); ?>
- <?php $__env->startSection('script'); ?>
- <script type="text/javascript">
- function show_seller_payment_modal(id, seller_withdraw_request_id){
- $.post('<?php echo e(route('withdraw_request.payment_modal')); ?>',{_token:'<?php echo e(@csrf_token()); ?>', id:id, seller_withdraw_request_id:seller_withdraw_request_id}, function(data){
- $('#payment-modal-content').html(data);
- $('#payment_modal').modal('show', {backdrop: 'static'});
- $('.demo-select2-placeholder').select2();
- });
- }
- function show_refuse_modal(id, seller_withdraw_request_id){
- $.post('<?php echo e(route('withdraw_request.refuse_modal')); ?>',{_token:'<?php echo e(@csrf_token()); ?>', id:id, seller_withdraw_request_id:seller_withdraw_request_id}, function(data){
- $('#refuse_modal-content').html(data);
- $('#refuse_modal').modal('show', {backdrop: 'static'});
- });
- }
- function show_message_modal(id){
- $.post('<?php echo e(route('withdraw_request.message_modal')); ?>',{_token:'<?php echo e(@csrf_token()); ?>', id:id}, function(data){
- $('#message-modal-content').html(data);
- $('#message_modal').modal('show', {backdrop: 'static'});
- });
- }
- </script>
- <?php $__env->stopSection(); ?>
- <?php echo $__env->make('backend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /Users/shaoguo/Desktop/公司资料/小梦/商城/ebayShop/resources/views/backend/sellers/seller_withdraw_requests_all_by_user/index2.blade.php ENDPATH**/ ?>
|