2
Talk guys, so, recently I started studying Laravel through some books/ video lessons, and I’m nodding my head with something related to authentication.
When I take command php artisan make:auth
The Laravel returns to me
The Routes
Auth::routes();
The Controllers
And the Views
So far so good, but running the remote php artisan route:list
it indicates for example that the route accessed to log in is located at App\Http\Controllers\Auth\LoginController@login
, but as you can see in the next image there is no such method login
in that class LoginController
.
Someone who knows the subject can explain to me how Laravel’s authentication works?
PS: I couldn’t put all the images, I put the main ones then.
Thanks Ivo, now I could understand how this authentication works more or less, to tell you the truth, I didn’t know very well what this Illuminate was, but now I know where to find it and see how it works.
– Junior