-
Notifications
You must be signed in to change notification settings - Fork 3
/
loan_application.php
70 lines (64 loc) · 2.17 KB
/
loan_application.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
include_once "inc/header.php";
include_once "inc/sidebar.php";
?>
<div class="card">
<div class="card-header">
ALl loan Application
</div>
<div class="card-body">
<h5 class="card-title">Loan details</h5>
<table id="example" class="table table-striped table-bordered table-hover" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Nid</th>
<th>DOB</th>
<th>ExpectedLoan</th>
<th>Percentage</th>
<th>Inst</th>
<th>TotalLoan</th>
<th>EMI</th>
<th>Documents</th>
<th>Report</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<?php
$all = $ml->viewLoanApplication();
if ($all) {
$i = 1;
while ($row = $all->fetch_assoc()) {
$i++;
?>
<tr>
<td><?php echo $row['name']; ?></td>
<td><?php echo $row['nid']; ?></td>
<td><?php echo $row['dob']; ?></td>
<td><?php echo $row['expected_loan']; ?> tk</td>
<td><?php echo $row['loan_percentage']; ?>%</td>
<td><?php echo $row['installments']; ?></td>
<td><?php echo $row['total_loan']; ?> tk</td>
<td><?php echo $row['emi_loan']; ?> tk/month</td>
<td><a href="<?php echo $row['files'];?>">download</a></td>
<td><a target="_blank" href="loan_app_report.php?loan_id=<?php echo $row['id'];?>">report</a></td>
<td><?php if($row['status'] == 3){
echo "<label class='badge badge-success'>Approved</label>";
//echo "<a href='#' class='btn btn-outline-success btn-sm'>Pay Loan</a>";
}else{
echo "<label class='badge badge-warning'>Pending</label>";
}
?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
<?php
include_once "inc/footer.php";
?>