Skip to content

Instantly share code, notes, and snippets.

@hskrasek
Last active August 29, 2015 14:05
Show Gist options
  • Save hskrasek/f988c7698b00c544f77f to your computer and use it in GitHub Desktop.
Save hskrasek/f988c7698b00c544f77f to your computer and use it in GitHub Desktop.
<?php
$model = User::with('relation')->find(1);
$cloned = $model->replicate();
foreach($model->relation as $relation)
{
$cloned->relation()->save($relation);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment