Viewing file: d17e291d8cccc7a5b69d467f12d1410249c7fa87.php (3.18 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('content'); ?> <?php echo $__env->make('users.partials.header', [ ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<div class="container-fluid mt--7"> <div class="row"> <div class="col"> <div class="card shadow"> <div class="card-header border-0"> <div class="row align-items"> <!-- <div class="col-4 text-right"> --> <h2>Transaction Reports </h2> <!-- </div> --> </div> </div> <div class="col-12"> </div>
<div class="table-responsive"> <table class="table align-items-center table-flush"> <thead class="thead-light"> <tr> <th scope="col">Name</th> <th scope="col">Phone</th> <th scope="col">Type</th> <th scope="col">Amount</th> <th scope="col">Date</th>
<th scope="col"></th> </tr> </thead> <tbody id="tabledata"> <?php $__currentLoopData = $transaction; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($value['user_name']); ?></td> <td><?php echo e($value['phone']); ?></td> <td><?php echo e($value['tx_type']); ?></td> <td><?php echo e($value['amount']); ?></td> <td><?php echo e($value['tx_date']); ?></td> <!-- <td><button type="button" class="btn btn-info btn" data-toggle="modal" data-target="#payment-modal" id="btn_payment" onclick="payment_modal_open('<?php echo e($value[0]); ?>','<?php echo e($value[3]); ?>')" >Payment</button></td> --> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div>
<!-- --> <div class="card-footer py-4"> <nav class="d-flex justify-content-end" aria-label="..."> </nav> </div> </div> </div> </div> <?php echo $__env->make('layouts.footers.auth', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', ['title' => __('Add user')], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\reseller\resources\views/reports/transaction.blade.php ENDPATH**/ ?>
|