我创建了一个位于文件夹userprofile
内的视图。我正在尝试显示视图,当我输入网址时,它没有给我一些错误,但它没有显示任何内容,它保留在同一页面上。
这是我在控制器中的功能
public function viewChangePassword(){
return view('userprofile.changepassword');
}
和路线
Route::get('/userprofile/changepassword','userProfileController@viewChangePassword');
答案 0 :(得分:0)
你可以试试看它是否有效:
set /a varname+=1
如果你有这条路线的href链接,你应该使用:
Route::get('userprofile/changepassword',
['uses' => 'userProfileController@viewChangePassword']);
并称之为:
Route::get('userprofile/changepassword',
['uses' => 'userProfileController@viewChangePassword','as' => 'change_password']);