You might've already used this when altering config values during runtime, but it proves to be of great use during testing.
Maybe you want to test your login with a different hashing driver temporarily?
/** @test */
public function it_uses_the_argon_hashing_driver_instead()
{
config(['hashing.driver' => 'argon']);
$this->post('/login');
}