banner
NEWS LETTER

Laravel 在模型中添加局部默认where方法

Scroll down

在模型中添加示范

1
2
3
4
5
6
7
class User extends BaseModel{
use SoftDeletes;
public function newQuery(){
global $_W;
return parent::newQuery()->where("tenant_id",$_W["tenant_id"]);
}
}
  • 这样在使用ORM的时候将会自动加上 ->where("tenant_id",x)
其他文章
请输入关键词进行搜索