n Validation Rule with Some Conditions in Laravel | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
Category:

Validation Rule with Some Conditions in Laravel


If your validation rules depend on some condition, you can modify the rules by adding withValidator() to your FormRequest class, and specify your custom logic there. Like, if you want to add validation rule only for some user role.


use Illuminate\Validation\Validator;
class StoreBlogCategoryRequest extends FormRequest {

      public function withValidator(Validator $validator) {
           if (auth()->user()->is_admin) {
                 $validator->addRules(['some_secret_password' => 'required']);
           }
    }
}

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook