如何防止用户软删除时分离角色?
$user->hasRole('subscriber')
=>真正
$user->delete()
$user->hasRole('subscriber')
=>假
$user->restore()
$user->hasRole('subscriber')
=>假
答案 0 :(得分:0)
查看EntrustUserTrait行69-80。
/**
* Boot the user model
* Attach event listener to remove the many-to-many records when trying to delete
* Will NOT delete any records if the user model uses soft deletes.
*
* @return void|bool
*/
public static function boot()
{
parent::boot();
static::deleting(function($user) {
if (!method_exists(Config::get('auth.model'), 'bootSoftDeletes')) {
$user->roles()->sync([]);
}
return true;
});
}
如果您没有 bootSoftDeletes ,我认为您不使用Laravel自己的SoftDeletes特性。
class User extends Authenticatable
{
use SoftDeletes;
use EntrustUserTrait;
...