Hi,
I've done artisan make:auth, it all works, but where does it place his routes? I only see explanations on how to protect routes, but not where the routes of the auth itself are defined.
thnx, thats what i searched for, only asking myself, where is the link to that router? there's no use in the top of the routes file. would like to understand the flow between the app and vendor files to use things myself.
@davidrushton if i look closely at vendor/laravel/framework/src/Illuminate/Routing/Router.php it seems a bit strange to me that it has only functions at i would expect from this file, but there are also routes of the auth in it? :S what is the logic of adding only the auth routes in this file? :S
@BartHuis I believe the Route::auth() method is really just a helper to save you from writing all of those individual routes yourself. Also, since AuthController and PasswordController end up using core Laravel traits anyway, the benefit would be that possible changes to method names, etc, would be handled for you.
I end up writing my own Auth controller for projects, so I defined the routes myself anyway.