我正在尝试将我的错误消息翻译成法语。但是验证消息包含在
中app/Rules/MatchOldPassword.php
文件
我已经翻译了validation.php文件中的错误消息,但是我该如何翻译此错误消息呢?
这是我的MatchOldPassword.php代码
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
use Illuminate\Support\Facades\Hash;
class MatchOldPassword implements Rule
{
/**
* 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 need to be matched the with old password.';
}
}
我正在尝试将我的错误消息翻译成法语。但是验证消息包含在app / Rules / MatchOldPassword.php文件中,我已将错误消息翻译为validation.php文件,...
使用__
方法进行字符串翻译