Subversion Repositories SmartDukaan

Rev

Rev 18858 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-12 table-responsive">
                        <h3>Loan History Transactions</h3>
                        <table class="table table-striped">
                                <thead>
                                        <tr>
                                                <th><?php echo ('Id');?></th>
                                                <th><?php echo ('UserId');?></th>
                                                <th><?php echo ('Creditor_Id');?></th>
                                                <th><?php echo ('Payment_id');?></th>
                                                <th><?php echo ('Amount');?></th>
                                                <th><?php echo ('Transaction_type');?></th>
                                                <th><?php echo ('Created');?></th>
                                                <th><?php echo ('Loan_id');?></th>
                                                <th><?php echo ('Due_date');?></th>
                                                <th><?php echo ('Value_date');?></th>
                                                <th><?php echo ('Invoice_Number');?></th>
                                        </tr>
                                </thead>
                                <tbody>
                                        <?php foreach($loanHistory AS $loanH):?>
                                                <tr>
                                                        <td><?php echo $loanH['id'];?></td>
                                                        <td><?php echo $usersMap[$loanH['user_id']];?></td>
                                                        <td><?php echo $loanH['creditor_id'];?></td>
                                                        <td><?php echo $loanH['payment_id'];?></td>
                                                        <td><?php echo $loanH['amount'];?></td>
                                                        <td><?php echo $loanH['credit_type'];?></td>
                                                        <td><?php echo $loanH['created'];?></td>
                                                        <td><?php echo $loanH['loan_id'];?></td>
                                                        <td><?php echo $loanH['due_date'];?></td>
                                                        <td><?php echo $loanH['value_date'];?></td>
                                                        <td><?php echo $loanH['invoiceNumber'];?></td>                                                  
                                                </tr>
                                        <?php endforeach;?>
                                </tbody>
                        </table>
                </div>
        </div>
</div>