我是Laravel的新手并且玩弄它。对不起,如果这是一个愚蠢的问题。我无法弄清楚雄辩的关系是如何运作的。例如:
// we have posts and comments related to them
class Post extends Model
{
public function comments(){
return $this->hasMany(Comment::class);
}
}
现在我们可以这样做来获得指定帖子的评论:
$comments = $post->comments;
第一个问题是:这怎么可能。在Laravel中,声明为属性的方法的名称。
第二个问题是:我怎样才能使用Comment类而不在文件的头部调用它,并使用'声明。 (使用App \ Comments)
感谢。