Package Data | |
---|---|
Maintainer Username: | mavinoo |
Maintainer Contact: | mavin.developer@gmail.com (Mohammad Ghanbari) |
Package Create Date: | 2017-10-07 |
Package Last Update: | 2024-09-17 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 15:04:34 |
Package Statistics | |
---|---|
Total Downloads: | 2,165,956 |
Monthly Downloads: | 78,014 |
Daily Downloads: | 3,215 |
Total Stars: | 571 |
Total Watchers: | 6 |
Total Forks: | 118 |
Total Open Issues: | 19 |
Insert and update batch (bulk) in laravel
composer require mavinoo/laravel-batch:dev-master
NOTE: Click to install the previous version 1.0.
NOTE: Click to install the previous version 2.0.
file app.php in array providers :
Mavinoo\LaravelBatch\LaravelBatchServiceProvider::class,
file app.php in array aliases :
'Batch' => Mavinoo\LaravelBatch\LaravelBatchFacade::class,
use App\Models\User;
$userInstance = new User;
$value = [
[
'id' => 1,
'status' => 'active',
'nickname' => 'Mohammad'
] ,
[
'id' => 5,
'status' => 'deactive',
'nickname' => 'Ghanbari'
] ,
];
$index = 'id';
Batch::update($userInstance, $value, $index);
use App\Models\User;
$userInstance = new User;
$value = [
[
'id' => 1,
'status' => 'active'
],
[
'id' => 5,
'status' => 'deactive',
'nickname' => 'Ghanbari'
],
[
'id' => 10,
'status' => 'active',
'date' => Carbon::now()
],
[
'id' => 11,
'username' => 'mavinoo'
]
];
$index = 'id';
Batch::update($userInstance, $value, $index);
use App\Models\User;
$userInstance = new User;
$columns = [
'firstName',
'lastName',
'email',
'isActive',
'status',
];
$values = [
[
'Mohammad',
'Ghanbari',
'emailSample_1@gmail.com',
'1',
'0',
] ,
[
'Saeed',
'Mohammadi',
'emailSample_2@gmail.com',
'1',
'0',
] ,
[
'Avin',
'Ghanbari',
'emailSample_3@gmail.com',
'1',
'0',
] ,
];
$batchSize = 500; // insert 500 (default), 100 minimum rows in one query
$result = Batch::insert($userInstance, $columns, $values, $batchSize);
// result : false or array
sample array result:
Array
(
[totalRows] => 384
[totalBatch] => 500
[totalQuery] => 1
)