22 lines
		
	
	
		
			422 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			422 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Visus\Cuid2\Cuid2;
 | 
						|
 | 
						|
abstract class BaseModel extends Model
 | 
						|
{
 | 
						|
    protected static function boot()
 | 
						|
    {
 | 
						|
        parent::boot();
 | 
						|
 | 
						|
        static::creating(function (Model $model) {
 | 
						|
            // Generate a UUID if one isn't set
 | 
						|
            if (!$model->uuid) {
 | 
						|
                $model->uuid = (string)new Cuid2(7);
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 |