Skip to content

Instantly share code, notes, and snippets.

@dennisoderwald
Forked from mpociot/CanBeReplicated.php
Created July 14, 2019 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dennisoderwald/9cc5c8111b5a725da57b6ea62adaffcd to your computer and use it in GitHub Desktop.
Save dennisoderwald/9cc5c8111b5a725da57b6ea62adaffcd to your computer and use it in GitHub Desktop.
Add the ability to replicate Laravel models to other models.
<?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);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment