I have done all the things for the validation for the variable in laravel but for emails I got one simple problem.
From doc of Laravel,
'email' => 'required|email'
I got to know this is for only one email address but for like,
[email protected],[email protected], def@ghi,com
When I send array of the email i still get email is not a valid email. I have done more like,
'email' => 'required|email|array'
But I still got error. can any body help.
Thanks,