22 lines
430 B
PHP
22 lines
430 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Webpatser\Uuid\Uuid;
|
|
|
|
trait Uuids
|
|
{
|
|
protected static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::creating(function ($model) {
|
|
$key = $model->getKeyName();
|
|
if (empty($model->{$key})) {
|
|
$model->{$key} = Uuid::generate()->string;
|
|
}
|
|
#$model->{$model->getKeyName()} = Uuid::generate()->string;
|
|
});
|
|
}
|
|
}
|