PHP code example of aef / laravel-batch-requests
1. Go to this page and download the library: Download aef/laravel-batch-requests 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/ */
aef / laravel-batch-requests example snippets
use LaravelBatchRequests\Http\Controllers\BatchRequestController;
Route::post('batch', [BatchRequestController::class, 'process']);
bash
php artisan vendor:publish --provider="LaravelBatchRequests\BatchRequestServiceProvider" --tag="config"