Skip to content

Commit

Permalink
Fix de la carga del formulario de cargos 2
Browse files Browse the repository at this point in the history
  • Loading branch information
elyambay committed Aug 31, 2017
1 parent 444befc commit 7c7c87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/CargosClientesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function store(Request $request){
}elseif ($posPunto) {
$real = str_replace("%", "", str_replace(".", "", $value)); // quita los caracteres de formato numérico
}else{
$real = $value;
$real = str_replace("%", "", $value);
}


Expand Down

0 comments on commit 7c7c87b

Please sign in to comment.