1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace catchAdmin\permissions\model;
- trait HasRolesTrait
- {
- /**
- *
- * @time 2019年12月08日
- * @return mixed
- */
- public function roles()
- {
- return $this->belongsToMany(Roles::class, 'user_has_roles', 'role_id', 'uid');
- }
- /**
- *
- * @time 2019年12月08日
- * @param array $fields
- * @return mixed
- */
- public function getRoles()
- {
- return $this->roles()->select();
- }
- /**
- *
- * @time 2019年12月08日
- * @param array $roles
- * @return mixed
- */
- public function attachRoles(array $roles)
- {
- if (empty($roles)) {
- return true;
- }
- sort($roles);
- return $this->roles()->attach($roles);
- }
- /**
- *
- * @time 2019年12月08日
- * @param array $roles
- * @return mixed
- */
- public function detachRoles(array $roles = [])
- {
- if (empty($roles)) {
- return $this->roles()->detach();
- }
- return $this->roles()->detach($roles);
- }
- }
|