I need to import to my database a csv file generated by my bank, I'm working with Laravel 5.6 and Laravel-Excel to read the file, the thing is that the amount field comes in a weird format and I do not know how to import that correctly to my db. According to the bank the field format is numeric(18,2) but the amount field comes with a lot of leading zeroes and not a decimal separator:
This is the real amount 700.00
and this is what it comes in the csv file 000000000000070000
Is there a way to manage or correctly format that number? The bank only exports data in that way.