It looks like you're missing an apostrophe in front of as
.
Route::get('register/verify/{confirmationCode}',[
'as' => 'confirm', 'uses' => 'userRegistrationController@confirm'
]);
Hm...your controller should also accept the argument with the same name. Since you are accepting confirmationCode
, your argument should be represented as $confirmationCode
.
public function confirm($confirmationCode)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community