M
M
Mikhail2020-07-19 13:09:15
Laravel
Mikhail, 2020-07-19 13:09:15

Laravel - How to create a duplicate post, for example I saved the post, $post->save() and how to create 3 more copies but change only one field?

For example, I create a post
$post = new Post;
$post ->name = "blabla"
$post ->date = "blabla"
$post ->title = "blabla"
$post ->autor = "blabla"
$post ->text = "blabla"
$post ->save ()

And then I want to multiply 3 times, but change the author for example.
What is the best way to do this?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ilya, 2020-07-19
@Sergo94Min

model's replicate method

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question