| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/adeetie_hellogtx/application/views/bee/dashboard/ |
Upload File : |
<table class="table table-bordered" border="1">
<thead>
<tr>
<th class="small-font" rowspan="2">S. No.</th>
<th class="small-font" rowspan="2">Financial Institutions</th>
<th class="small-font" colspan="2">
<div class="col-sm-12 top-table-line">Willingness Forms</div>
</th>
<th class="small-font" colspan="2">
<div class="col-sm-12 top-table-line">Other EE loan applications</div>
</th>
<th class="small-font" colspan="3">
<div class="col-sm-12 top-table-line">Total EE loan applications</div>
</th>
</tr>
<tr>
<th class="small-font"> <div class="col-sm-6">Received (No.)</div></th>
<th class="small-font"> <div class="col-sm-6">Sanctioned (No.) (A)</div></th>
<th class="small-font">
<div class="col-sm-6">Received (No.)</div>
</th>
<th class="small-font"><div class="col-sm-6">Sanctioned (No.) (B)</div></th>
<th class="small-font">
<div class="col-sm-4">Sanctioned (No.) (A+B)</div>
</th>
<th class="small-font">
<div class="col-sm-4">Loan amount (Rs. Crore)</div>
</th>
<th class="small-font">
<div class="col-sm-4">Loan Disbursed (Rs Crore)</div>
</th>
</tr>
</thead>
<tbody>
<?php $sno = 1; ?>
<?php if(!empty($banks)) { ?>
<?php foreach($banks as $bank): ?>
<?php $bankc = trim($bank['bank_code']); ?>
<?php
$finance = !empty($financed[$bankc]['amount']) ? $financed[$bankc]['amount']: 0;
$sanction = !empty($sanctioned[$bankc]['amount']) ? $sanctioned[$bankc]['amount']: 0;
$disburse = !empty($disbursed[$bankc]['amount']) ? $disbursed[$bankc]['amount']: 0;
$totalSanction = number_format((float)($finance + $sanction) / 10000000, 2, '.', '');
$totalDisburse = number_format(($finance + $disburse) / 10000000, 2, '.', '');
?>
<tr>
<td><?php echo $sno; ?></td>
<td><?php echo $bank['bank_name']; ?></td>
<td><?php echo $totalapp; ?></td>
<td><?php echo !empty($sanctioned[$bankc]) ? $sanctioned[$bankc]['num']: 0; ?>
</td>
<td><?php echo !empty($financed[$bankc]['num']) ? $financed[$bankc]['num']: 0; ?></td>
<td><?php echo !empty($financed[$bankc]['num']) ? $financed[$bankc]['num']: 0; ?></td>
<td style="width: 100px">
<?php
$fin = !empty($financed[$bankc]['num']) ? $financed[$bankc]['num'] : 0;
$sanc = !empty($sanctioned[$bankc]['num']) ? $sanctioned[$bankc]['num']: 0;
?>
<?php echo $fin + $sanc; ?>
</td>
<td style="width: 100px"><?php echo $totalSanction; ?></td>
<td style="width: 100px"><?php echo $totalDisburse; ?></td>
</tr>
<?php $sno++; ?>
<?php endforeach; ?>
<?php } ?>
</tbody>
</table>