Laravel 使用 belongsTo 绑定到表

Laravel bind to tables with belongsTo

我想绑定到 table 的关系。第一个 table 是 posts,第二个 table 是 users。在帖子 table 中有 user_id.

我该怎么做?

在您的 Post 型号上

public function user()
{
    return $this->belongsTo('User');
}

如果你需要反向关系,在你的用户模型上

public function posts()
{
    return $this->hasMany('Post');
}