Created
June 12, 2019 12:32
-
-
Save mpociot/ea51fed3b438e90b50228f4b113aba13 to your computer and use it in GitHub Desktop.
Add the ability to replicate Laravel models to other models.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Support\Arr; | |
trait CanBeReplicated | |
{ | |
public function replicateTo(string $model, array $with = null, array $except = null) | |
{ | |
$defaults = [ | |
$this->getKeyName(), | |
$this->getCreatedAtColumn(), | |
$this->getUpdatedAtColumn(), | |
]; | |
$attributes = Arr::except( | |
$this->attributes, $except ? array_unique(array_merge($except, $defaults)) : $defaults | |
); | |
$attributes = array_merge($attributes, $with ?? []); | |
return tap(new $model, function ($instance) use ($attributes) { | |
$instance->setRawAttributes($attributes); | |
$instance->setRelations($this->relations); | |
$instance->fireModelEvent('replicating', false); | |
}); | |
} | |
} |
Wow, 💯
Yesterday I had the same problem. I came up with something similar, but ended using two different models (the new one extending the old one).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice one