M层
class Course extends Model
{
public function Klasses(){
return $this->belongsToMany('Klass', config('database.prefix') . 'klass_course');}
}
C层
------------------------------------------------------------
public function add()
{
$this->assign('Course', new SmallCourse);
return $this->fetch();
}