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

This package is auto-updated.

Last update: 2025-03-12 06:22:04 UTC


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);

Licence

MIT