PHP code example of dazza-dev / laravel-batch-validation

1. Go to this page and download the library: Download dazza-dev/laravel-batch-validation library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dazza-dev / laravel-batch-validation example snippets


use Illuminate\Support\Facades\Validator;

$data = [
    ['name' => 'User 1', 'email' => '[email protected]'],
    ['name' => 'User 2', 'email' => '[email protected]'],
    ['name' => 'User 3', 'email' => '[email protected]'],
];

// Validator Instance
$validator = Validator::make($data, [
    '*.name' => '

$validator->validateInBatches(batchSize: 20);

$validator = Validator::make($data, [
    '*.name' => '
]);

use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Validator;

class StoreContactRequest extends FormRequest
{
    public function rules(): array
    {
        return [
            '*.name' => '$validator->validateInBatches(batchSize: 100);
        }
    }
}