📅  最后修改于: 2022-03-11 14:54:32.700000             🧑  作者: Mango
class Post extends Model
{
protected $with = ['category', 'author'];
public function category()
{
return $this->belongsTo(Category::class);
}
public function author()
{
return $this->belongsTo(User::class, 'user_id');
}
}