attach()从修补工作但不是控制器工作

时间:2016-10-22 21:41:56

标签: php laravel

我想在同一个类上实现多对多的关系。课程有必修课程。附加工具来修补而不是控制器。

$course->pre_reqs()->attach(int); // works from tinker

//does not work from controller (I checked that $course is the right object)
$course =  DB::table('courses')->where('id', $id1)->first();
$course->pre_reqs()->attach(10);

//from model
public function pre_reqs()
{
    return $this->belongsToMany('App\Course', 'pre_req', 'course_id', 'pre_req_course_id' );
}

数据透视表适用于修补程序。

错误是

  

调用未定义的方法pre_reqs

1 个答案:

答案 0 :(得分:1)

尝试使用模型类

$course =  Course::where('id', $id1)->first();
$course->pre_reqs()->attach(10);