1

次の基本的なクラス設定があります。

class Document extends Eloquent {

    /**
     * [types description]
     * @return [type] [description]
     */
    public function types() {
        return $this->belongsToMany('Type');
    }

}

return type doc ブロックに入れるのに適切な値はどれですか? return メソッドの var ダンプを実行すると、オブジェクト \Illuminate\Database\Eloquent\Relations\BelongsToMany がポイントされます

この場合、それは正しいでしょうか?(なぜそうなのかはよくわかりません。)

ありがとう

4

2 に答える 2