Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel Validation - How to check if a value exists in a given array?

So, okay i tried a lot of rules from validation docs but all give me same error saying

Array to string conversion

Here is how I add the array:

$this->validate($request,[
                'employee' => 'required|in:'.$employee->pluck('id')->toArray(),
            ],[
                'employee.in' => 'employee does not exists',
            ]);

Any hint on how to achieve this?

i created a custom validator but still passing array seems to be not possible

like image 222
Metabolic Avatar asked Apr 04 '16 21:04

Metabolic


2 Answers

Update: You are now able to use the Rule class instead of imploding values yourself as described in the correct answer. Simply do:

['someProperty' => ['required', Rule::in(['needed', 'stuff'])]];

As mentioned in the 'validating arrays' section in the documentation: https://laravel.com/docs/5.6/validation#validating-arrays

like image 81
nielsstampe Avatar answered Nov 08 '22 01:11

nielsstampe


Implode the array as a string and join it on commas.

'employee' => 'required|in:'.$employee->implode('id', ', '),

This will make the correct comma separated string that the validator expects when making an in comparison.

Edit

This still works, but is not the Laravelesque way of doing it anymore. See the answer by @nielsiano.

like image 45
Ohgodwhy Avatar answered Nov 08 '22 01:11

Ohgodwhy