Doubt about the connection to the bank on laravel authentication 5.6 [closed]

0

Hello, I have a question and I can not solve it, I need to make the connection of the auth of laravel 5.6 with an existing database, but I am a little lost, I already put the sql server drivers and already connected with the bank in the database.php, now I want to know where to set which columns and which table to use to authenticate.

Thank you in advance.

    
asked by anonymous 19.06.2018 / 19:55

1 answer

1

According to the Laravel manual, you use the artisan to generate everything you need (route, controller, view):

php artisan make:auth

(source: link )

Go ahead and you should be able to adjust yourself because you have the whole structure.

    
19.06.2018 / 20:19