My application allows the user to upload multiple image files at the same time, however I can't figure out how to validate the array of images.
$input = Request::all();
$rules = array(
...
'image' => 'required|image'
);
$validator = Validator::make($input, $rules);
if ($validator->fails()) {
$messages = $validator->messages();
return Redirect::to('venue-add')
->withErrors($messages);
} else { ...
This validation will fail, as 'image'
is an array, if I change the validation rule to:
$rules = array(
...
'image' => 'required|array'
);
The validation will pass, but the images inside of the array haven't been verified.
This answer uses the keyword each to prefix validation rules, however this is in laravel 4.2 and in Laravel 5 it doesn't seem to work.
I've been trying to iterate through the array and validation on each image individually, but is there a built in function to do this for me?
I used a technique similar to what Jeemusu recommended and after the initial validation to make sure the array of images is present, iterated through the array with a second validator, making sure each item in the array is in fact an image. Here's the code:
This works for me
Do it in that order.