php-如何在Laravel中的自定义请求类中传递消息?

这是我要在其上传递表单请求自定义消息的请求类.

我想根据我的自定义规则传递自定义验证消息.

<?PHP


namespace App\Http\Requests\Authenticate;

use App\Http\Requests\Request;

class AuthRequest extends Request
{

    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        // I want to return custom messages from here
        return [
            "email" => "required|email|exists:user,email",
            'password' => 'required',
        ];
    }

}

任何帮助表示赞赏.提前非常感谢您.

解决方法:

这是你的答案.添加一个额外的功能来传递消息.

public function messages()
{
    return [
        "required" => "The :attribute field is required.",
        'email' => 'The :attribute should be valid email.',
        'exists' => 'The :attribute already exists.'
    ];
}

相关文章

laravel的dd函数不生效怎么办
看不懂laravel文档咋办
安装laravel框架出现command怎么办
Laravel开发API怎么使用事务
laravel怎么构建复杂查询条件
laravel如何实现防止被下载