info("Plain: $plain"); $this->info("Hashed: $hashed"); $check = Hash::check($plain, $hashed) ? 'Match' : 'Does not match'; $checkWrong = Hash::check('wrongpass', $hashed) ? 'Match' : 'Does not match'; $this->info("Check correct password: $check"); $this->info("Check wrong password: $checkWrong"); } }