微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。