When updating user model ( user::update() ) it triggers "Model Events":
User::updatingUser::updated
Only if there're some value changes, Is there a way to trigger another "Event" if there's no changes? thanks
//Provider
public function boot()
{
User::updated(function ($user) {
//do something
});
}