How to use the Laravel Users table on a Php project.
Hello, I want to connect two projects to the same MySql table. The main site uses Laravel and the other uses plain PHP script built from scratch.
I want users to be able to login to the table using their data on the Users table from Laravel but am having password issues.
Laravel uses a hash encrypt for his password and I can't find a way to unhash it during login for the plain PHP site.
Below is the PHP code I wrote for the login but is not working.