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.'
    ];
}

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...