I'm building an application with Laravel 5.2
and I'd like to login users with usernames and passwords that are stored in a different database with password in md5($salt.$password)
style. I CANNOT move to a different cypher like bcrypt
currently due to access limitations. I only need to handle the login of the users. How can I do this?
I've already tried with a class that extends EloquentUserProvider and overrides validateCredentials method but with no luck.
I'm searching for a solution on laravel 5. i think the solution here is about laravel 4 and some things maybe changed?