Skip to content

Instantly share code, notes, and snippets.

@pradeep3
Forked from calebporzio/HasUuid.php
Created September 30, 2021 16:03
Show Gist options
  • Save pradeep3/f52afb0065621fe46a0e7275e2893851 to your computer and use it in GitHub Desktop.
Save pradeep3/f52afb0065621fe46a0e7275e2893851 to your computer and use it in GitHub Desktop.
A little trait to add to models that will have Uuids
<?php
// Example usage in a model:
class ExampleModel extends Model
{
use HasUuid;
protected $primaryKey = 'uuid';
public $incrementing = false;
}
// The Trait:
trait HasUuid
{
public static function bootHasUuid()
{
static::creating(function ($model) {
if (! $model->{$model->getKeyName()}) {
$model->{$model->getKeyName()} = static::generateUuid();
}
});
}
public static function generateUuid()
{
return (string) Illuminate\Support\Str::uuid();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment