Skip to content

Instantly share code, notes, and snippets.

@dinhquochan
Created March 29, 2019 04:13
Show Gist options
  • Select an option

  • Save dinhquochan/9be627e3c5a11a17bfc14c441a595685 to your computer and use it in GitHub Desktop.

Select an option

Save dinhquochan/9be627e3c5a11a17bfc14c441a595685 to your computer and use it in GitHub Desktop.
Laravel Default Verify Email Routes
<?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