📌  相关文章
📜  laravel 如何根据帖子中的 id 从用户模型中获取用户 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:45.380000             🧑  作者: Mango

代码示例3
class Post extends Eloquent {
  protected $table = "posts";

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