且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在 Laravel 5.3 中对上传的多张图片进行验证

更新时间:2023-02-17 09:38:32

将验证移到循环之外并尝试使用规则:

Move validation outside the loop and try with the rules:

 'image' => 'required',
 'image.*' => 'image|mimes:jpeg,png,jpg,gif,svg|max:2048'