Created
March 29, 2019 04:13
-
-
Save dinhquochan/9be627e3c5a11a17bfc14c441a595685 to your computer and use it in GitHub Desktop.
Laravel Default Verify Email Routes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| Route::get('email/verify', 'Auth\VerificationController@show')->name('verification.notice'); | |
| Route::get('email/verify/{id}', 'Auth\VerificationController@verify')->name('verification.verify'); | |
| Route::get('email/resend', 'Auth\VerificationController@resend')->name('verification.resend'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment