Files
phpvms/app/Models/Traits/Uuids.php
2017-08-24 10:51:47 -05:00

25 lines
451 B
PHP

<?php
namespace App\Models\Traits;
use Hashids\Hashids;
trait Uuids
{
protected static function boot()
{
parent::boot();
static::creating(function ($model) {
$key = $model->getKeyName();
if (empty($model->{$key})) {
$hashids = new Hashids('', 8);
$id = $hashids->encode((int)microtime(true));
$model->{$key} = $id;
}
});
}
}