📜  模型 laravel 中默认预加载关系 - PHP 代码示例

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

代码示例1
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');
    }
}