前提・実現したいこと
検索画面などで複数の項目のいずれか1つを必須にしたいのですが、
required_without_allというものを使用し検証したところ、
aに該当するところに値を入れリクエストを送ると正常に検索がされますが、
b~gのところに入力すると、aの部分のバリデーションが効いてしまいます。
エラーメッセージを一行で済ませたいため、check_requiredのような存在しない架空のフィールドを指定しています。
よろしくお願いいたします。
該当のソースコード
php
1/** 2 * Get the validation rules that apply to the request. 3 * 4 * @return array 5 */ 6 public function rules() 7 { 8 return [ 9 'a' => '', 10 'b' => '', 11 'c' => '', 12 'd' => '', 13 'e' => '', 14 'f' => '', 15 'g' => '', 16 'check_required' => ['required_without_all:a, b, c, d, e, f, g'] 17 ]; 18 } 19 20public function messages() 21 { 22 return [ 23 'check_required.required_without_all' => 'いずれか1つは必須です。', 24 25 ]; 26 }
下記のように記載すると全フィールドがnullの際にエラ〜メッセージが複数出てしまう。
php
1/** 2 * Get the validation rules that apply to the request. 3 * 4 * @return array 5 */ 6 public function rules() 7 { 8 return [ 9 'a' => ['required_without_all:b, c, d, e, f, g'] 10 'b' => ['required_without_all:a, c, d, e, f, g'] 11 'c' => ['required_without_all:a, b, d, e, f, g'] 12 'd' => ['required_without_all:a, b, c, e, f, g'] 13 'e' => ['required_without_all:a, b, c, d, f, g'] 14 'f' => ['required_without_all:a, b, c, d, e, g'] 15 'g' => ['required_without_all:a, b, c, d, e, f'] 16 ]; 17 } 18 19public function messages() 20 { 21 return [ 22 'required_without_all' => 'いずれか1つは必須です。', 23 24 ]; 25 }
補足情報(FW/ツールのバージョンなど)
laravel8
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。