sparqapi/api/application/helpers/otherincomeform_helper.php
2019-02-26 17:51:18 +05:30

16 lines
438 B
PHP

<?php
class Otherincomeform
{
public static function getIncomeDetails($values){
$values = array_map(function($tag) {
return array(
'source' => $tag['source']==1 ? $tag['others_source'] : $tag['source_master'],
'amount' => 'Rs.'.$tag['amount'],
'frequency' => $tag['frequency']==1 ? $tag['others_frequency'] : $tag['frequency_master'],
);
}, $values);
return $values;
}
}
?>