Validation in Laravel

2 min read .

Validation is a crucial part of any web application to ensure that the data being processed meets certain standards. Laravel, a popular PHP framework, provides an elegant and simple way to handle validation. This guide will walk you through how to implement validation in Laravel, from the basics to more advanced scenarios.

Basic Validation

Laravel makes it incredibly easy to validate incoming data. The most common way to validate data is by using the validate method provided by the Illuminate\Http\Request object.

Here’s an example:

use Illuminate\Http\Request;

public function store(Request $request)
{
    $validatedData = $request->validate([
        'name' => 'required|max:255',
        'email' => 'required|email|unique:users,email',
        'password' => 'required|min:8|confirmed',
    ]);

    // If validation passes, proceed with storing the data
}

In the above example, Laravel automatically handles the validation process. If the validation fails, a redirect response will be generated, and the errors will be flashed to the session. You can then display these errors in your views.

Custom Error Messages

Laravel also allows you to specify custom error messages for validation rules. This can be done by passing an array of custom messages as the third argument to the validate method.

$validatedData = $request->validate([
    'name' => 'required|max:255',
    'email' => 'required|email|unique:users,email',
    'password' => 'required|min:8|confirmed',
], [
    'name.required' => 'Please enter your name.',
    'email.required' => 'We need to know your email address!',
    'password.min' => 'Password must be at least 8 characters long.',
]);

Validation in Form Requests

For more complex validation logic, it’s a good practice to use Form Request classes. A Form Request is a custom request class that contains validation logic.

You can generate a Form Request class using Artisan:

php artisan make:request StoreUserRequest

Then, define your validation rules in the rules method:

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class StoreUserRequest extends FormRequest
{
    public function rules()
    {
        return [
            'name' => 'required|max:255',
            'email' => 'required|email|unique:users,email',
            'password' => 'required|min:8|confirmed',
        ];
    }
}

In your controller, you can now use this custom request class:

use App\Http\Requests\StoreUserRequest;

public function store(StoreUserRequest $request)
{
    // Validation logic is handled within StoreUserRequest
    $validatedData = $request->validated();

    // Proceed with storing the data
}

Conditional Validation

There are cases where you might want to apply validation rules conditionally. Laravel’s validation engine makes this easy with the sometimes method:

$request->validate([
    'email' => 'required|email',
    'password' => 'sometimes|required|min:8|confirmed',
]);

This example ensures that the password is only required if it’s present in the input.

Complex Validation with Closures

For more complex validation scenarios, you can use closures to add custom validation logic:

use Illuminate\Validation\Rule;

$request->validate([
    'email' => [
        'required',
        'email',
        function ($attribute, $value, $fail) {
            if ($value === '[email protected]') {
                $fail($attribute.' is invalid.');
            }
        },
    ],
]);

Validating Arrays

Laravel also provides a convenient way to validate arrays of data. If you expect an array of inputs, you can validate them like so:

$request->validate([
    'photos.*' => 'image|mimes:jpg,jpeg,png|max:2048',
]);

In this example, each file in the photos array must be an image and cannot exceed 2MB.

Conclusion

Laravel’s validation system is powerful and flexible, making it easy to ensure that the data entering your application is valid. Whether you’re validating simple input fields or complex form data, Laravel provides tools that simplify the process. By understanding the basics of validation, using custom messages, and applying advanced techniques like conditional and complex validation, you can build robust applications with confidence.

Tags:
Laravel

See Also

chevron-up