gpt4 book ai didi

php - 十月 CMS : How to extend the backend user with role scope

转载 作者:搜寻专家 更新时间:2023-10-31 21:23:47 25 4
gpt4 key购买 nike

我已经能够扩展 Backend\Models\User 类并添加范围查询方法以仅检索 super 用户:

public function boot()
{
User::extend(function($model) {
$model->addDynamicMethod('scopeIsSuperUser', function($query) {
return $query->where('is_superuser', 1);
});
});
}

如何为特定组中的用户设置范围方法?就像我只想要角色为“BookManager”的用户一样。是否可以使用已在 Backend\Models\User 类中定义的 $groups 关系?

public $belongsToMany = [
'groups' => ['Backend\Models\UserGroup', 'table' => 'backend_users_groups']
];

最佳答案

应该这样做

User::extend(function($model) {
$model->addDynamicMethod('scopeIsBookManager', function($query) {
return $query->whereHas('groups', function ($query) {
$query->where('code', 'BookManager');
});
});
});

关于php - 十月 CMS : How to extend the backend user with role scope,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40797227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com