is there detailed article on how default authentication works in laravel 5?
i make changes...
- allowing login username , or email.
- setting email verification.
i have found things on laravel 4 not apply 5. list of files need altered helpful.
i think offical laravel 5 docs describe authentication well: http://laravel.com/docs/5.0/authentication
for "username and/or email" part @ answer on question: how allow application login user username or mobile number in laravel 5?
the second point isn't hard too.
- add
email_validation
(or that) table database - create controller handles validation requests (something
foo.bar/validate/{email_token}
- on registration, send user email link controller
- validate user, remove token
email_validation
table , allow user login.