Files
Website/app/Traits/UUID.php
2024-04-22 18:16:33 +10:00

43 lines
780 B
PHP

<?php
namespace App\Traits;
use Illuminate\Support\Str;
trait UUID
{
/**
* Boot function from Laravel.
*
* @return void
*/
protected static function bootUUID(): void
{
static::creating(function ($model) {
if (empty($model->{$model->getKeyName()}) === true) {
$model->{$model->getKeyName()} = Str::uuid()->toString();
}
});
}
/**
* Get the value indicating whether the IDs are incrementing.
*
* @return boolean
*/
public function getIncrementing(): bool
{
return false;
}
/**
* Get the auto-incrementing key type.
*
* @return string
*/
public function getKeyType(): string
{
return 'string';
}
}