rockbuzz/lara-uuid

Laravel Uuid

2.0.2 2023-02-17 19:29 UTC

README

Laravel Uuid

需求

PHP: >=7.3

安装

$ composer require rockbuzz/lara-uuid
Schema::create('workspaces', function (Blueprint $table) {
    $table->uuid('id')->primary();
    ...
});

use Rockbuzz\LaraUuid\Traits\UUid;
	
class User extends Authenticatable
{
    use Uuid;

    public $incrementing = false;

    protected $keyType = 'string';

    protected $casts = [
        'id' => 'string',
    ];

    ...
	    
}

许可证

Lara Uuid 是开源软件,遵循 MIT 许可证