gpt4 book ai didi

php - View 中的 Laravel undefined variable

转载 作者:搜寻专家 更新时间:2023-10-31 21:23:17 25 4
gpt4 key购买 nike

我是 laravel 的新手。使用 5.3 版并尝试搜索但看不到我做错了什么。在我看来,我不断收到“ undefined variable :用户”。我也在做表单模型绑定(bind)。手动输入 URL 时模型绑定(bind)工作正常。只是无法单击链接以调出编辑 View 。

我的路线:

Route::get('/profile/edit/{id}', 'ProfileController@getEdit');
Route::post('/profile/edit/{id}', 'ProfileController@postEdit');

我的 Controller :

public function getEdit($id){

$user= User::findOrFail($id);
return view('profile.edit', compact('user'));
}

我的看法:

<li><a href="{{ url('/profile/edit', $user->id ) }}">Update profile</a></li>

我的表单:

{!! Form::model($user,['method' => 'POST', 'action'=>        ['ProfileController@postEdit', $user->id]]) !!}

最佳答案

public function getEdit($id){

$user= User::findOrFail($id);
return view('profile.edit', ['user' => $user]);
}

public function postEdit($id){

$user= User::findOrFail($id);
return view('profile.edit', ['user' => $user]);
}

关于php - View 中的 Laravel undefined variable ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41774501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com