I converted my project to Laravel. I have an existing data which stores password hashes. If i upload this project to my remote server. My customers cannot login. They have to use forgot password section.
But it is not good for my customers.
I want to use bcrypt for password hashing like in Laravel. But in my old system. I used different method. For full compatibility i don't want to change anything in defaults of Laravel.
May be i can create a different column in database. And i can store new hashes for a month. For active users i can grab new hashes and i can convert my system.
But these are not good solutions. Do you have any idea ?