18 lines
323 B
PHP
18 lines
323 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Xaevik\Cuid2\Cuid2;
|
||
|
|
||
|
abstract class BaseModel extends Model
|
||
|
{
|
||
|
protected static function boot()
|
||
|
{
|
||
|
parent::boot();
|
||
|
|
||
|
static::creating(function (Model $model) {
|
||
|
$model->uuid = (string) new Cuid2();
|
||
|
});
|
||
|
}
|
||
|
}
|