laravel required_without code example

Example 1: laravel unique validation

unique:table,column,except,idColumn

############## Example : ################

############### For Updating  
//rules
'email' => 'unique:users,email_address,' . $userId,

############### For Creating 
//rules
'email' => 'unique:users,email_address',

Example 2: laravel validation custom message example

$rules = [
        'name' => 'required',
        'email' => 'required|email',
        'message' => 'required|max:250',
    ];

    $customMessages = [
        'required' => 'The :attribute field is required.'
    ];

    $this->validate($request, $rules, $customMessages);
//@sujay

Example 3: required_without_all laravel

1. required_with:foo,bar,...
  
Use Case: The field under validation must be present and not empty only if any 
=========  of the other specified fields are present.

2. required_with_all:foo,bar,...
  
Use Case: The field under validation must be present and not empty only if all 
=========   of the other specified fields are present.

3. required_without:foo,bar,...

Use Case: The field under validation must be present and not empty only when 
========  any of the other specified fields are not present.

4. required_without_all:foo,bar,...

Use Case: The field under validation must be present and not empty only when 
=========  all of the other specified fields are not present.

Tags:

Php Example