15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
use Illuminate\Support\Str;
|
|
trait Uuid
|
|
{
|
|
protected static function boot(){
|
|
parent::boot();
|
|
static::creating(function ($model) {
|
|
$model->uuid = (string) Str::uuid();
|
|
});
|
|
}
|
|
}
|