Level 88
I need two validations here
request()->validate([
'images' => 'max:5', // checks length of array
'images.*' => 'max:2048', // checks file size
]);
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
`` request()->validate([
'images.*' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048',
]); ``
Please or to participate in this conversation.