I have written a PHP based Web Application several years ago in Plain PHP. Now for some reason, I want to upgrade that project in Laravel. But I face a problem when I want to Laravel default authentication (which is done by php artisan make:auth).
Because, the old project uses user_account to store user info (username, password, and so on), but so far what I know, Laravel uses users table to store user information.
There is no way to rename user_account to users to solve the issue.
Is there any way to user_account in Laravel so that Laravel uses that table during login, registration, and so on..
- Thanks