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\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Validator;
class StoreContactRequest extends FormRequest
{
public function rules(): array
{
return [
'*.name' => '$validator->validateInBatches(batchSize: 100);
}
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.