rockbuzz/lara-uuid

Laravel Uuid

Downloads

1070

Stars

0

Version

2.0.2

Lara Uuid

Laravel Uuid

Requirements

PHP: >=7.3

Install

$ 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',
    ];

    ...
	    
}

License

The Lara Uuid is open-sourced software licensed under the MIT license.

rockbuzz

Author

rockbuzz