Often when I use a staging DB for debugging purposes, I can't connect to the admin because idk the staging password. And I can't be bothered to go look it up in the teams 1p. So here's a php/laravel tinker snippet that will change the password to our usual team user to something much simpler ^^
tap($user = App\Models\User::firstWhere('email', 'hello@whitecube.be'), fn ($user) => $user->password = bcrypt('change_this'))->save();