rits-tecnologia/laravel-model-uuid

1.0.0 2022-01-28 17:27 UTC

This package is auto-updated.

Last update: 2024-05-28 23:05:25 UTC


README

This package provides UUID automatic generation for Laravel Models.

Installation

Install this package with composer.

composer require rits-tecnologia/laravel-model-uuid

Usage

Change your migration primary key

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

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

Add trait to your model

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    use GeneratesUuid;
}