If you have a numeric value like this “1,435”, you can use this method to remove commas and get only numeric value.
$a = str_replace(',', '', "1,435");
//Result will be 1435
Reversely this code if you want to add some comma for your numeric value you can use below code.
number_format("1435",2,",",".")
You can see more what you can do with number_format method refer this : https://slaford.com/laravel/how-to-use-php-number_format-function/