【发布时间】:2020-04-24 13:21:15
【问题描述】:
我想验证 audition_dates 字段在 shoot_dates 之前。
我知道我可以通过这些规则来验证数组:
public function store(Request $request)
{
$validatedData = $request->validate([
'shoot_dates' => 'array',
'shoot_dates.*' => 'date',
'audition_dates' => 'array',
'audition_dates.*' => 'date'
]);
// The request is valid...
}
我知道存在这些验证规则:
$rules = [
'start_date' => 'after:tomorrow',
'end_date' => 'after:start_date'
];
但我不知道如何在数组上实现它们。
【问题讨论】:
-
你试过 Validator::make 吗?
-
更新了问题。
标签: php laravel validation