Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 laravel 中使用委托包来管理角色和权限。
$role->deattachPermission($permission);
它不起作用。
$role->perms()->detach($permission->id);
几个选项:
$role->perms()->sync([]);
或者
$role->perms()->detach($permission)