我有一条路线,用户可以输入他们的用户名,然后就会转到他们的页面。
注册后,我有一个验证规则,以确保他们没有用户名,如“登录”,“联系”等。
当用户键入有效的用户名时,它会被带到视图并正确显示,但是,由于用户功能,现在我的常规/登录/联系人视图不起作用
Route::get('/', 'Home\PageController@index')->name('home.index');
Route::get('/contact', 'Home\PageController@contact')->name('home.contact');
Route::get('{user}', 'Profile\ProfileController@liveProfileIndex')->name('profile.live.index');
控制器
public function liveProfileIndex($us){
$user = User::where('username', $us)->first();
if ($user) {
$data = array(
'user' => $user,
);
return view('profile.liveprofileindex', $data);
} else {
// abort(404);
}
}