2023-03-24 13:54:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2023-03-24 15:56:56 +00:00
|
|
|
use Visus\Cuid2\Cuid2;
|
2023-03-24 13:54:17 +00:00
|
|
|
|
|
|
|
abstract class BaseModel extends Model
|
|
|
|
{
|
|
|
|
protected static function boot()
|
|
|
|
{
|
|
|
|
parent::boot();
|
|
|
|
|
|
|
|
static::creating(function (Model $model) {
|
2023-05-09 12:42:10 +00:00
|
|
|
// Generate a UUID if one isn't set
|
|
|
|
if (!$model->uuid) {
|
2023-08-08 09:51:36 +00:00
|
|
|
$model->uuid = (string)new Cuid2(7);
|
2023-05-09 12:42:10 +00:00
|
|
|
}
|
2023-03-24 13:54:17 +00:00
|
|
|
});
|
|
|
|
}
|
2023-03-24 15:56:56 +00:00
|
|
|
}
|