我有以下基本课程设置:
class Document extends Eloquent {
/**
* [types description]
* @return [type] [description]
*/
public function types() {
return $this->belongsToMany('Type');
}
}
什么值适合放在返回类型文档块中?执行返回方法的 var 转储指向对象 \Illuminate\Database\Eloquent\Relations\BelongsToMany
在这种情况下是否正确?(我不确定为什么会这样?)
谢谢