Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-12 table-responsive">
                        <h3>Credit Outstanding Payments</h3>
                        <table class="table table-striped">
                                <thead>
                                        <tr>
                                                <th><?php echo ('User Name');?></th>
                                                <th><?php echo ('Email Id');?></th>
                                                <th><?php echo ('Counter Name');?></th>
                                                <th><?php echo ('Creditor Id');?></th>
                                                <th><?php echo ('Payment Id');?></th>
                                                <th><?php echo ('Total Amount');?></th>
                                                <th><?php echo ('Created');?></th>
                                        </tr>
                                </thead>
                                <tbody>
                                        <?php foreach($outstandingPayments AS $loanH):?>
                                                <tr>
                                                        <td><?php echo $usersName[$loanH['user_id']];?></td>
                                                        <td><?php echo $usersMap[$loanH['user_id']]; ?></td>
                                                        <td><?php echo $loanH['counter_name'];?></td>
                                                        <td><?php echo $loanH['creditor_id'];?></td>
                                                        <td><?php echo $loanH['payment_id'];?></td>
                                                        <td><?php echo $loanH['totalAmount'];?></td>
                                                        <td><?php echo date('Y-m-d H:i:s', $loanH['created']/1000);?></td>
                                                </tr>
                                        <?php endforeach;?>
                                </tbody>
                        </table>
                </div>
        </div>
</div>