/
home
/
sjslayjy
/
public_html
/
olddevlok
/
storage
/
framework
/
views
/
Upload File
HOME
<table class="table table-striped table-hover"> <thead> <tr> <th>Amount</th> <th>Payment Date</th> <th>Bank</th> <th>Bank Account Number</th> <th>Bank Reference Number</th> <th>Payment Mode</th> </tr> </thead> <tbody> <?php $__currentLoopData = $payments; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $payment): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($payment->payment_amount); ?></td> <td><?php echo e(date('d-m-Y',strtotime($payment->payment_date))); ?></td> <td><?php echo e($payment->bank_account->bank->name); ?></td> <td><?php echo e($payment->bank_account->account_number); ?></td> <td><?php echo e($payment->bank_reference_number); ?></td> <td><?php echo e($payment->payment_mode); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php /**PATH /home/pmmsanvp/public_html/srt/resources/views/dashboard/invoice/loading-slip-invoice-payment-details.blade.php ENDPATH**/ ?>