A simple drop-in solution for providing bulk-insert for the Eloquent models.
cwola/laravel-eloquent-bulk is a Laravel package for a simple drop-in solution for providing bulk-insert for the eloquent models..
It currently has 0 GitHub stars and 6 downloads on Packagist (latest version v1.0.1).
Install it with composer require cwola/laravel-eloquent-bulk.
Discover more Laravel packages by cwola
or browse all Laravel packages to compare alternatives.
Last updated
Providing bulk-insert for the Eloquent models(Cwola library).
A simple drop-in solution for providing bulk-insert for the Eloquent models.
composer require cwola/laravel-eloquent-bulk
<?php
use Illuminate\Support\Collection;
use Cwola\LaravelEloquentBulk\Bulk;
$models = Collection::make([
...eloquent-models
]);
Bulk::insert($models);