控制器不返回视图

时间:2016-10-19 12:10:50

标签: php laravel laravel-5

我创建了一个位于文件夹userprofile内的视图。我正在尝试显示视图,当我输入网址时,它没有给我一些错误,但它没有显示任何内容,它保留在同一页面上。

这是我在控制器中的功能

public function viewChangePassword(){
    return view('userprofile.changepassword');
}

和路线

Route::get('/userprofile/changepassword','userProfileController@viewChangePassword');

1 个答案:

答案 0 :(得分:0)

你可以试试看它是否有效:

set /a varname+=1

如果你有这条路线的href链接,你应该使用:

Route::get('userprofile/changepassword',
['uses' => 'userProfileController@viewChangePassword']);

并称之为:

Route::get('userprofile/changepassword',
    ['uses' => 'userProfileController@viewChangePassword','as' => 'change_password']);