Conditional validation rules in Laravel 8.x
Sometimes, you might end up in a situation where you would want to add certain validation rules for fields.
Now, Laravel already has a somtimes method in the Illuminate\Support\Facades\Validator
facade that can be used to only add certain validation rules if the Closure passed to it returns true
. But that’s quite verbose if you ask me.
There was a need for something simple and that’s where a when method is added to the Illuminate\Validation\Rule
class.
The Rule::when()
method
As I said, Laravel 8.x now comes with a handy Rule::when()
method that can be used to conditionally add certain validation rules on the specified fields.
Here’s how it works.
use Illuminate\Validation\Rule;
request()->validate([
'name' => 'required|string|min:6',
'password' => ['required', 'string', Rule::when(true, ['min:5', 'confirmed'])],
]);
As you can tell, the Rule::when()
method accepts two parameters. The parameter is where pass in the conditional based on which you want to include the validation rules if it’s truthy.
The second parameter is an array of all the validation rules that need to be added based on the conditional.
In my opinion, this is quite concise and elegant than using the sometimes()
method I mentioned previously.
Passing in the default rules
Now, when you want to specify the alternative/default set of validation rules when the condition becomes false
, you can pass in a third parameter to the Rule::when()
method as an array like so.
Rule::when(
$truthyCondition,
['min:5', 'confirmed'],
['required']
);
So, in this case, the required
validation rule will kick in if the $truthyCondition
becomes false
. This behaviour is available from the version 8.56.0.
Like this article?
Buy me a coffee👋 Hi there! I'm Amit. I write articles about all things web development. You can become a sponsor on my blog to help me continue my writing journey and get your brand in front of thousands of eyes.