Home / Snippets / How to Save Multiple Records at Once in Laravel Eloquent
How to Save Multiple Records at Once in Laravel Eloquent cover

How to Save Multiple Records at Once in Laravel Eloquent

16.7K

3 years ago

0 comments

Sometimes you might need to save multiple records at once and you can do so by using the "saveMany()" method or the "createMany()" method available to each of the Eloquent model relation.

Prerequisite For Saving Multiple Records
Do note that you need to have "hasMany()" relationship in order to do so. For example, imagine having a Post that has many Comments.
<?php # your post model

class Post extends Model
{
    # your other codes here

    public function comments()
    {
        return $this->hasMany(\App\Models\Comments::class);
    }
}

Laravel saveMany() Code Example
The save many accepts multiple arrays of the relationship instance. In the case of this example, it will be the comments. 
<?php

$post = Post::first();

$post->comments()->saveMany([
  new Comment(['title' => 'Comment 1']),
  new Comment(['title' => 'Comment 2']),
]);

The code above will save 2 comments at the same time for the first post.

Laravel createMany() Code Example
The other way is to use the createMany() method and you can just pass in the data as an array as follows.
<?php

$post = Post::first();

$post->comments()->createMany([
  ['title' => 'Comment 1'],
  ['title' => 'Comment 2'],
]);
notion avatar

Alaz

Week-end developer currently experimenting with web, mobile, and all things programming.

Topics:

Frontend

Resource

Average

Average

Support Us

If you like our tutorial, support us by being our Patreon or buy us some coffee ☕️

Welcome to PostSrc V3

PostSrc Dark Logo

You have to login to favorite this