phpvms/app/Models/Traits/HashId.php
2018-02-20 22:33:09 -06:00

33 lines
626 B
PHP

<?php
namespace App\Models\Traits;
use Hashids\Hashids;
trait HashId
{
/**
* @return string
* @throws \Hashids\HashidsException
*/
protected static function createNewHashId()
{
$hashids = new Hashids('', 12);
$mt = str_replace('.', '', microtime(true));
return $hashids->encode($mt);
}
/**
* Register callbacks
*/
protected static function boot()
{
parent::boot();
static::creating(function ($model) {
if (empty($model->id)) {
$model->id = static::createNewHashId();
}
});
}
}