Reputation: 6367
I want to use th rule:
not_in:foo,bar,...
But instead of providing the strings like in the example I would like to provide an array.
I know that I can just implode the array to the string but I would like to know if Laravel has an in-built function for that?
Upvotes: 0
Views: 121
Reputation: 111859
Laravel doesn't have build in functionality for this. But as you said you can simply use implode for this
Upvotes: 1