この簡単な例を使用すると、テーブル「comments」の列を取得できますが、テーブル「post」の列を取得できません。「Fluent join」を使用できることは知っていますが、Eloquente では可能ですか? ありがとう!
class Post extends Eloquent {
public function comments()
{
return $this->has_many('Comment');
}
}
$comments = Post::find(1)->comments()->get();