LoginSignup
0
0

More than 5 years have passed since last update.

Laravel5 で追加バリデーション

Posted at

Request::withValidator()Validator::after() を使ってバリデーションを追加する。

class BaseRequest extends Request
{
    /**
     * 追加バリデーション
     */
    public function withValidator($validator)
    {
        $validator->after(function ($validator) {
            $data = [
                'firebaseToken' => $this->getFirebaseToken(),
                'deviceType' => $this->getDeviceTypeNo(),
            ];

            $headerValidator = \Validator::make($data, [
                'firebaseToken' => 'required',
                'deviceType' => 'in:'.sprintf("%s,%s", OS::$IOS->no, OS::$ANDROID->no),
            ]);

            if ($headerValidator->fails()) {
                $validator->errors()->merge($headerValidator);
                $this->failedValidation($validator);
            }
        });

        return $validator;
    }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0