Sometimes, it’s a nice feature to clone a model. If we need most of its attributes and change only a few, it could be life-saving. Using this one-liner we can clone the object easier than we except.

// You can deep copy your eloquent model
$new = $model->replicate();

$new->save();