Skip to content

Commit 4a04990

Browse files
authored
Merge pull request #175 from CaddyDz/master
Fix hardcoded App namespace
2 parents 46577a3 + 227349b commit 4a04990

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
Route::group([
1515
'middleware' => 'web'
1616
], function () {
17-
Route::get('email-verification/error', 'App\Http\Controllers\Auth\RegisterController@getVerificationError')
17+
Route::get('email-verification/error', app()->getNamespace().'Http\Controllers\Auth\RegisterController@getVerificationError')
1818
->name('email-verification.error');
1919

20-
Route::get('email-verification/check/{token}', 'App\Http\Controllers\Auth\RegisterController@getVerification')
20+
Route::get('email-verification/check/{token}', app()->getNamespace().'Http\Controllers\Auth\RegisterController@getVerification')
2121
->name('email-verification.check');
2222
});

0 commit comments

Comments
 (0)