0
管理者がメンバーシップアプリケーションの検証カスタム検証規則を設定できる管理パネルで作業しています。データベースに$ attribute => $ rulesのペアを設定する必要があることを理解しています。Laravel:ルールごとの再帰的検証
しかし、実装する方法がわかりません。管理者は、各$ key => $ルールのペアが再帰的に必要であり、親が失敗した場合に実行される子$ key => $ルールのペアをオプションとして持つことができます。したがって、最終的には、各ルールに0〜多くの子ルールを持たせることができます。これらのルールはすべて、親ルールを渡すために渡す必要があります。
例:
// Original validation (Assume age = 16, time_at_job = 18 and monthly_income = 3000)
[
'age' => 'min:21', // Fail, but pass because of subset is all pass
'time_at_job' => 'min:6' // Pass
'monthly_income' => 'min:2000' // Pass
]
// If the original age fails and this passes, then age passes and continue to the original
time_at_job.
[
'age' => 'min:18, // Fail, but pass because of subset is all pass
'time_at_job' => 'min:12' // Pass
'monthly_income' => 'min:2500' // Pass
]
// If the subset age passed and this passes, then the subset age passes, but the subset
time_at_job and monthly income will need to pass before the original age can pass.
[
'age' => 'min:16, // Pass
'time_at_job' => 'min:18' // Pass
'monthly_income' => 'min:3000' // Pass
]
これを開始する場所に任意の助けいただければ幸いです。