Skip to content

Commit 7d072ca

Browse files
committed
Documentation
1 parent daf4487 commit 7d072ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ The view will be available in the `resources/views/vendor/laravel-user-verificat
203203

204204
### Routes
205205

206-
By default this packages ships with two routes, if you want to change them, you can simply define your own routes. Make sure you added the packages service provider **before** Laravels `RouteServiceProvider`, otherwise you can not overwrite the routes.
206+
By default this packages ships with two routes. If you want to change them, you can simply define your own routes.
207207

208208
```PHP
209209
Route::get('email-verification/error', 'Auth\RegisterController@getVerificationError')->name('email-verification.error');

src/routes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
| Laravel user verification routes
66
|--------------------------------------------------------------------------
77
*/
8-
Route::get('email-verification/error', 'Auth\RegisterController@getVerificationError')->name('email-verification.error');
9-
Route::get('email-verification/check/{token}', 'Auth\RegisterController@getVerification')->name('email-verification.check');
8+
Route::get('email-verification/error', 'App\Http\Controllers\Auth\RegisterController@getVerificationError')->name('email-verification.error');
9+
Route::get('email-verification/check/{token}', 'App\Http\Controllers\Auth\RegisterController@getVerification')->name('email-verification.check');

0 commit comments

Comments
 (0)