Laravel provides a powerful validation system that allows you to validate incoming data from various sources, such as user inputs, API requests, and more. In this post, we'll explore Laravel validations in-depth and provide examples to demonstrate their usage.

Why Use Laravel Validations?

Validating user inputs is a critical aspect of web development. It helps ensure the integrity and security of your application by verifying that the data meets certain criteria and constraints. Laravel's validation system simplifies this process by providing a clean and expressive way to define validation rules and handle validation errors.

Defining Validation Rules

In Laravel, validation rules are defined in the validation logic, usually within a controller method or a dedicated Form Request class. To get started, let's consider a basic example where we want to validate a form submission with the following fields: name, email, and password.

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;

public function store(Request $request)
{
    $validator = Validator::make($request->all(), [
        'name' => 'required|string|max:255',
        'email' => 'required|email|unique:users|max:255',
        'password' => 'required|string|min:8',
    ]);

    if ($validator->fails()) {
        // Handle validation errors
    }

    // Validation passed, process the data
}

 

In the above example, we use the Validator facade to create a new validator instance. The make() method accepts two arguments: the data to be validated ($request->all()) and an array of validation rules.

Each field's validation rules are defined as strings within the array. In this case, we're using various validation rules like required, string, email, unique, and min. You can chain multiple rules together using the pipe character (|).

 

Handling Validation Errors

If the validation fails, Laravel provides several ways to handle the errors. One approach is to redirect the user back to the form with the errors and old input. You can achieve this by using the withErrors() method:

if ($validator->fails()) {
    return redirect()
        ->back()
        ->withErrors($validator)
        ->withInput();
}

The withErrors() method flashes the error messages to the session, making them available in the view. The withInput() method ensures that the user's previous input is included in the redirected form.

Alternatively, you can manually retrieve the error messages from the validator and handle them as per your application's requirements:

if ($validator->fails()) {
    $errors = $validator->errors();

    // Handle errors
}

 

Customizing Error Messages

Laravel allows you to customize the error messages associated with validation rules. By default, it provides sensible default error messages, but you can override them to tailor them to your application's needs.

To customize the error messages, you can use the messages() method on the validator instance:

$validator = Validator::make($request->all(), [
    'name' => 'required|string|max:255',
    'email' => 'required|email|unique:users|max:255',
    'password' => 'required|string|min:8',
], [
    'name.required' => 'Please provide your name.',
    'email.required' => 'The email address is required.',
    'password.min' => 'The password must be at least 8 characters.',
]);

In the example above, we define custom error messages for specific validation rules by mapping them to the corresponding field and rule combination.

 

Conditional Validations

Sometimes, you may need to apply validation rules conditionally based on certain criteria. Laravel provides the sometimes() method to handle this scenario:

$validator = Validator::make($request->all(), [
    'name' => 'required|string|max:255',
    'email' => 'required|email|max:255',
    'password' => 'required|string|min:8',
]);

$validator->sometimes('credit_card', 'required', function ($input) {
    return $input->payment_method === 'credit_card';
});

In the example above, the sometimes() method is used to conditionally add the 'required' rule to the 'credit_card' field. The callback function determines whether the rule should be added or not based on the value of the 'payment_method' field.

 

Laravel provides a comprehensive validation system that simplifies the process of validating user inputs. In this post, we explored the basics of Laravel validations, including defining validation rules, handling validation errors, customizing error messages, and applying conditional validations. By utilizing Laravel's validation features effectively, you can enhance the robustness and security of your applications while ensuring data integrity.

 

Most commonly used validation rules with example

  1. required: Ensures that a field is present and not empty.
    'name' => 'required'​

    This rule ensures that the 'name' field is required.

  2. string: Validates that a field's value is a string.
    'name' => 'string'​

    This rule ensures that the 'name' field is a string.

  3. numeric: Validates that a field's value is numeric.
    'age' => 'numeric'​

    This rule ensures that the 'age' field is numeric.

  4. email: Validates that a field's value is a valid email address.
    'email' => 'email'​

    This rule ensures that the 'email' field contains a valid email address.

  5. url: Validates that a field's value is a valid URL.
    'website' => 'url'​

    This rule ensures that the 'website' field contains a valid URL.

  6. unique: Validates that a field's value does not already exist in a given database table.
    'email' => 'unique:users'​

    This rule ensures that the 'email' field is unique in the 'users' table.

  7. max: Validates that a field's value does not exceed a maximum length or value.
    'name' => 'max:255'​

    This rule ensures that the 'name' field does not exceed 255 characters.

  8. min: Validates that a field's value meets a minimum length or value.
    'password' => 'min:8'​

    This rule ensures that the 'password' field has a minimum length of 8 characters.

  9. in: Validates that a field's value is within a given set of values.
    'role' => 'in:admin,editor,author'​

    This rule ensures that the 'role' field has a value that is either 'admin', 'editor', or 'author'.

  10. date: Validates that a field's value is a valid date format.
    'dob' => 'date'​

    This rule ensures that the 'dob' (date of birth) field contains a valid date.

  11. before: Validates that a date field's value is before a specified date.
    'end_date' => 'before:start_date'​

    This rule ensures that the 'end_date' field occurs before the 'start_date' field.

  12. after: Validates that a date field's value is after a specified date.
    'start_date' => 'after:today'​

    This rule ensures that the 'start_date' field occurs after the current date.

  13. confirmed: Validates that a field's value matches another field's value (usually used for password confirmations).
    'password' => 'confirmed'​

    This rule ensures that the 'password' field matches a 'password_confirmation' field.

  14. mimes: Validates that a file upload has a specific MIME type.
    'avatar' => 'mimes:jpeg,png'​

    This rule ensures that the 'avatar' file upload has a MIME type of either 'jpeg' or 'png'.

  15. regex: Validates that a field's value matches a given regular expression pattern.
    'code' => 'regex:/^[A-Za-z0-9]+$/'​

    This rule ensures that the 'code' field only contains alphanumeric characters.

These are just a few examples of the many validation rules available in Laravel. You can combine and customize these rules to suit your application's specific validation requirements.