cwola / laravel-eloquent-bulk
A simple drop-in solution for providing bulk-insert for the Eloquent models.
v1.0.1
2022-07-10 04:44 UTC
Requires
- php: >=8.0.0
- cwola/reflector: ^1.0
- laravel/framework: ^9.0
README
Providing bulk-insert for the Eloquent models(Cwola library).
Overview
A simple drop-in solution for providing bulk-insert for the Eloquent models.
Requirement
- PHP8.0+
Installation
composer require cwola/laravel-eloquent-bulk
Usage
<?php
use Illuminate\Support\Collection;
use Cwola\LaravelEloquentBulk\Bulk;
$models = Collection::make([
...eloquent-models
]);
Bulk::insert($models);