orm获取关联表里的属性值,orm表里属性值
程序员文章站
2023-12-23 10:50:04
...
orm获取关联表里的属性值,orm表里属性值
ORM——关系对象模型
laravel中的Eloquent ORM用于和数据表互动,其中每个数据库表会和一个对应的「模型」互动,想要了解请查看官方文档或自行百度。获取关联表里的属性值代码如下:
/** * [getContactAttribute 获取卖家联系人] */ public function getContactAttribute() { return $this->hasOne('App\Http\Models\Supplier', 'SupplierId', 'SupplierId')->first()->contact; }