| 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">States</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 if(!empty($states)) { ?>
<?php foreach($states as $state): ?>
<?php $stcode = trim($state['state_code']); ?>
<?php
$sanction = !empty($sanctioned[$stcode]['amount']) ? $sanctioned[$stcode]['amount']: 0;
$disburse = !empty($disbursed[$stcode]['amount']) ? $disbursed[$stcode]['amount']: 0;
$totalSanction = number_format((float)($sanction) / 10000000, 2, '.', '');
$totalDisburse = number_format(($disburse) / 10000000, 2, '.', '');
?>
<tr>
<td><a class="text-dec" href="<?php echo base_url('console/statesr/'.$stcode.'/1'); ?>"><?php echo $state['state_name']; ?></a></td>
<td><a class="text-dec" href="<?php echo base_url('console/statesr/'.$stcode.'/1'); ?>"><?php echo !empty($fidata[$stcode]) ? $fidata[$stcode]: 0; ?></a></td>
<td><?php echo !empty($sanctioned[$stcode]['num']) ? $sanctioned[$stcode]['num']: 0; ?></td>
<td><?php echo !empty($financed[$stcode]['num']) ? $financed[$stcode]['num']: 0; ?></td>
<td><?php echo !empty($financed[$stcode]['num']) ? $financed[$stcode]['num']: 0; ?></td>
<td style="width: 100px">
<?php
$fin = !empty($financed[$stcode]['num']) ? $financed[$stcode]['num'] : 0;
$sanc = !empty($sanctioned[$stcode]['num']) ? $sanctioned[$stcode]['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 endforeach; ?>
<?php } ?>
</tbody>
<!-- <tfoot>
<tr>
<td>Total</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tfoot> -->
</table>