foreach($data['prestamos'] as $row):
/*inicia inspeccionar abonos*/
$prestamos = $this->prestamosModel->getAbonosPrestamoInicio($row->pr_id_prestamo );
$suma_prestamos = 0.00;
if($prestamos){
foreach($prestamos as $row2):
if($row2->pa_monto>0){
$suma_prestamos = $suma_prestamos+$row2->pa_monto;
}
endforeach;
}
$row->suma_prestamos = $suma_prestamos;
endforeach;
$this->load->view('control/pagina_inicio', $data);