Talk to people, so recently I started to study Laravel through some books / video lessons, and I'm bending my head with something about authentication.
When I run the command php artisan make:auth
Laravel returns me
The Routes
Auth::routes();
The Controllers
AndtheViews
Sofarsogood,butrunningthecommandphpartisanroute:list
itindicatesforexamplethattherouteaccessedtologinislocatedinApp\Http\Controllers\Auth\LoginController@login
,butasyoucanseeinthenextimagethereisnologin
methodinthisclassLoginController
.
Can someone explaining how Laravel authentication works?
PS: I could not put all the images, I put the main ones then.