📜  return Hash::check($value, auth()->user()->password); - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:25.032000             🧑  作者: Mango

代码示例1
* Create a new rule instance.     *     * @return void     *//*public function __construct()    {        $this->middleware('auth');    }*/    /**     * Determine if the validation rule passes.     *     * @param  string  $attribute     * @param  mixed  $value     * @return bool     */    public function passes($attribute, $value)    {        return Hash::check($value, auth()->user()->password);    }     /**     * Get the validation error message.     *     * @return string     */    public function message()    {        return 'The :attribute is match with old password.';    }}