1
バリエーションフック(documentation)をカスタムリクエストにphp artisan make:request
で添付することはできますか?バリデーションリクエストのバリデーションフック
バリエーションフック(documentation)をカスタムリクエストにphp artisan make:request
で添付することはできますか?バリデーションリクエストのバリデーションフック
あなたはこのようにカスタムのリクエストクラスでgetValidatorInstance()
メソッドをオーバーライドすることができます。
protected function getValidatorInstance()
{
$validator = parent::getValidatorInstance();
// here you can apply hook (example hook taken from documentation):
$validator->after(function ($validator) {
if ($this->somethingElseIsInvalid()) {
$validator->errors()->add('field', 'Something is wrong with this field!');
}
});
return $validator;
}