Download the PHP package dazza-dev/laravel-batch-validation without Composer
On this page you can find all versions of the php package dazza-dev/laravel-batch-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dazza-dev/laravel-batch-validation
More information about dazza-dev/laravel-batch-validation
Files in dazza-dev/laravel-batch-validation
Package laravel-batch-validation
Short Description Batch validate arrays in Laravel and optimize database unique rules using whereIn to avoid N+1 query issues.
License MIT
Informations about the package laravel-batch-validation
Laravel Batch Validation
When performing array validations in Laravel with unique rules, Laravel validates one record at a time, causing an N+1 query problem. This is a common issue when importing data from an Excel file and validating it before inserting it into the database. This package solves the problem by batching the unique validations and using whereIn to prevent the N+1 problem.
Install
Usage
This package is easy to use. Here's an example of how to apply it:
Batch Size
You can change the batch size by passing the batchSize
parameter to the validateInBatches
method. The default batch size is 10.
Database Rules
This package also supports database rules like unique
, exists
.
Form Request
You can use the validateInBatches
method in a form request.
Before and After Optimization
Before (N+1 problem)
After (Optimized)
Contributions
Contributions are welcome. If you find any bugs or have ideas for improvements, please open an issue or send a pull request. Make sure to follow the contribution guidelines.
Author
Laravel Batch Validation was created by DAZZA.
License
This project is licensed under the MIT License.