@Cronix I got you point I changed every thing
like from my view page
<a href="{{ route('emailVerify'.Auth::user()->$confirmation_code) }}">{{ Auth::user()->email}}</a>
my route
Route::get('emailverify/{id}','HomeController@emailVerify')->name('emailVerify');
and my controller method
public function emailVerify($id,Request $request)
{
$confirmation_code=$id;
Mail::send('email.verify', $confirmation_code, function($message) {
$message->to(Auth::user()->email, Auth::user()->name)
->subject('Verify your email address');
});
return redirect()->back();
}
then it give me error like
Sorry, the page you are looking for could not be found.