Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12.x] Add createMany mass-assignment variants to HasOneOrMany relation #55262

Merged
merged 3 commits into from
Apr 4, 2025

Conversation

onlime
Copy link
Contributor

@onlime onlime commented Apr 2, 2025

In Eloquent's HasOneOrMany relation, we have the following methods: create(), createQuietly(), forceCreate(), and forceCreateQuietly(). But to create a collection of new instances of the related model, we only have createMany() and createManyQuietly. I found myself searching for such mass-assignment variants over and over again.

In data import actions, I do this:

collect($comments)
    ->map(fn (array $comment) => [
        ...$comment,
        // override some attributes here
    ])
    ->each(fn (array $comment) => $post->comments()->forceCreateQuietly($comment));

With this PR, we can use use the lovely splat operator ... to pass all items directly into the forceCreateManyQuietly() method:

collect($comments)
    ->map(fn (array $comment) => [
        ...$comment,
        // override some attributes here
    ])
    ->pipe($post->comments()->forceCreateManyQuietly(...));

This PR adds the missing forceCreateMany() and forceCreateManyQuietly() methods.

@taylorotwell taylorotwell merged commit 98375d1 into laravel:12.x Apr 4, 2025
39 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants