rits-tecnologia/laravel-model-uuid

1.0.0 2022-01-28 17:27 UTC

This package is auto-updated.

Last update: 2024-09-28 23:50:55 UTC


README

此包为 Laravel 模型提供 UUID 自动生成功能。

安装

使用 composer 安装此包。

composer require rits-tecnologia/laravel-model-uuid

用法

更改迁移的主键

// change this
$table->id();

// to this
$table->uuid('id')->primary();

将特质添加到您的模型中

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    use GeneratesUuid;
}