0
我是laravel應用程序開發中的新人。我有一個userEducation
表。我存儲我的用戶的教育背景。一個用戶可以有多行。一切都好。但是,當我從userEducation
表中爲單個用戶提取數據時,它將返回所有數據。如何從userEducation
表中獲取單個用戶的所有數據。通過用戶ID獲取所有數據laravel 5.2
下面這是我的控制器類
class userController extends Controller{
public function index(){
}
public function show($id){
}
public function edit(){
$educations=userEducation::all();
return view('auth.user_edit',['educations'=>$educations]);
}
}
任何人都幫我plesae :)
親愛的,現在顯示一個錯誤。 「Class'App \ Http \ Controllers \ Auth'not found」 –
在你的班級上面加上'使用Auth;' –